Skip to main content
A newer version of this page is available. .

Document.IsSelected Property

Gets whether the current document is selected in the group where it is displayed.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v18.2.dll

Declaration

[Browsable(false)]
public bool IsSelected { get; }

Property Value

Type Description
Boolean

true if the current document is selected within its group; otherwise, false.

Remarks

Documents within a TabbedView are combined into groups. Each group has its own selected document. The IsSelected property specifies whether the document is selected.

When you activate a document (move focus to it), it is automatically selected. To select a document in code without activating it, use the DocumentGroup.SetSelected method.

See Also