Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxSchedulerTimeGridViewTreeBrowser.InnerControl Property

Provides access to the tree list control that resides in the Tree Browser pane and customize tree list properties.

#Declaration

Delphi
property InnerControl: TcxControl read;

#Property Value

Type
TcxControl

#Remarks

Cast the property value to the TcxVirtualTreeList class to access its members, as shown below.

Delphi
var
  ATreeList: TcxVirtualTreeList;
  ATreeList := TcxVirtualTreeList(<Scheduler>.ViewGantt.TreeBrowser.InnerControl);
  // Prohibits tree list columns from being moved
  ATreeList.OptionsCustomizing.ColumnMoving := False;

Use the pane’s Width property in order to adjust the tree list’s width without having to access tree list properties via the InnerControl property.

See Also