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!

ISelectionService.SetContainerSelected

Changes the container selection status of the given component.

[Visual Basic]
Sub SetContainerSelected( _
   ByVal component As Object, _
   ByVal selected As Boolean _
)
[C#]
void SetContainerSelected(
   object component,
   bool selected
);
[C++]
void SetContainerSelected(
   Object* component,
   bool selected
) = 0;
[JScript]
function SetContainerSelected(
   component : Object,
   selected : Boolean
);

Parameters

component
The component to modify the container selection status of.
selected
true to set the component to become the selected container; false to be unselected.

Remarks

Container selection is a visual aid for selecting containers. It doesn't affect the normal component selection.

See Also

ISelectionService Interface | ISelectionService Members | System.ComponentModel.Design Namespace