A runtime form designer control

FormDesigner.DeselectComponent Method 

De-selects specified component.

[Visual Basic]
Public Sub DeselectComponent( _ 
   ByVal component As IComponent _ 
)
[C#]
public void DeselectComponent(
   IComponent component
);
[C++]
public: void DeselectComponent(
   IComponent* component
);
[JScript]
public function DeselectComponent(
   IComponent component
);

Parameters

component
Component to be deselected.

Remarks

All selected components are automatically deselected when the FormDesigner is swiched from design mode to run mode.

The call to this method is ignored if the FormDesigner is operating in run mode.

No exception occurs if the specified component is not previously selected.

See Also

FormDesigner Class | Viklele.Win.Designer Namespace | SelectComponent | SelectAllComponents | DeselectAllComponents