DocumentGroup.SetSelected(Document) Method
This member supports the internal infrastructure, and is not intended to be used directly from your code.
Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed
Assembly: DevExpress.XtraBars.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public void SetSelected(
Document document
)
Parameters
Name | Type | Description |
---|---|---|
document | Document | A Document to be selected. |
Remarks
The SetSelected method allows you to select a document within the DocumentGroup in code, but does not cause the DocumentManager control to be redrawn. You can use it during the control update process (between the DocumentManager.BeginUpdate and DocumentManager.EndUpdate methods calls).
To select a specific document, please use the ITabbedViewController.Select method instead.
See Also