windowsforms-devexpress-dot-xtratreelist-dot-treelist-cf05cc2c.md
Provides access to options specific to scrollbar annotations.
Namespace : DevExpress.XtraTreeList
Assembly : DevExpress.XtraTreeList.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.TreeList
[XtraSerializableProperty(XtraSerializationVisibility.Content, XtraSerializationFlags.DefaultValue)]
public TreeListOptionsScrollAnnotations OptionsScrollAnnotations { get; }
<XtraSerializableProperty(XtraSerializationVisibility.Content, XtraSerializationFlags.DefaultValue)>
Public ReadOnly Property OptionsScrollAnnotations As TreeListOptionsScrollAnnotations
| Type | Description |
|---|---|
| DevExpress.XtraTreeList.TreeListOptionsScrollAnnotations |
Scrollbar annotation options.
|
The OptionsScrollAnnotations property provides access to options that allow you to enable/disable specific annotations.
Scrollbar annotations are disabled if a corresponding option is set to Default. Set the option to True to enable scrollbar annotations.
// Enable annotations for the focused row.
treeList.OptionsScrollAnnotations.ShowFocusedRow = DefaultBoolean.True;
' Enable annotations for the focused row.
treeList.OptionsScrollAnnotations.ShowFocusedRow = DefaultBoolean.True
See Also