ArcObjects Library Reference (Controls)  

IToolbarControl.Enabled Property

Indicates whether the ToolbarControl can respond to user generated events.

[Visual Basic .NET]
Public Property Enabled As Boolean
[C#]
public bool Enabled {get; set;}
[C++]
HRESULT get_Enabled(
  VARIANT_BOOL* pbool
);
[C++]
HRESULT put_Enabled(
  VARIANT_BOOL pbool
);
[C++]

Parameters

pbool [out, retval]   pbool is a parameter of type VARIANT_BOOL pbool [in]   pbool is a parameter of type VARIANT_BOOL

Product Availability

Available with ArcGIS Engine.

Description

The Enabled property allows a ToolbarControl to be enabled or disabled at run time. For example, you can disable Controls that don't apply to the current state of the application. A ToolbarControl which is not enabled will not respond to any keyboard or mouse interaction, and will not fire any mouse or keyboard events to its Buddy if any is set.

See Also

IToolbarControl Interface