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!

ISelectionUIHandler.GetComponentRules

Retrieves a set of rules concerning the movement capabilities of a component. This should be one or more flags from the SelectionRules class. If no designer provides rules for a component, the component will not get any UI services.

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

Parameters

component
The component to get the selection rules for.

Return Value

The components selection rules.

See Also

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