DockPanel.CanActivate Property
Indicates whether a dock panel can be activated.
Namespace: DevExpress.XtraBars.Docking
Assembly: DevExpress.XtraBars.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
Property Value
Type | Description |
---|---|
Boolean | true if a dock panel can be activated; otherwise, false. |
Remarks
End-users can activate a panel by clicking the panel or any of the controls residing on it. This can also be done via code by setting the dock manager’s DockManager.ActivePanel property.
The dock panel cannot be activated in the cases listed below:
- the dock panel or its parent panel is hidden (its DockPanel.Visibility property is set to the DockVisibility.Hidden value);
- the dock panel does not belong to a dock manager (the panel’s DockPanel.DockManager property’s value is null).
See Also