NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ISelectionUIService.GetSelectionRules

Retrieves a set of flags that define rules for the selection. Selection rules indicate if the given component can be moved or sized, for example.

[Visual Basic]
Function GetSelectionRules( _
   ByVal component As Object _
) As SelectionRules
[C#]
SelectionRules GetSelectionRules(
   object component
);
[C++]
SelectionRules GetSelectionRules(
   Object* component
) = 0;
[JScript]
function GetSelectionRules(
   component : Object
) : SelectionRules;

Parameters

component
The component to inquire about. An exception will be thrown if this compnent is not currently selected.

Return Value

a series of flags from the SelectionRules class.

See Also

ISelectionUIService Interface | ISelectionUIService Members | System.WinForms.Design Namespace