treecombobox TreeView property
Return to Introduction  Previous page  Next page
Applies to
acTreeComboBox component.  

Declaration
property TreeView: TacPopupTreeView; // run-time and read-only!  

Description
The TreeView is the read-only property which can be used at run-time to access the properties and methods of the TreeView control embedded to the drop-down window of acTreeComboBox.  
 
tip Alternatively you can just specify some behaviours of TreeView using TreeOptions property.  

Example
procedure TForm1.acTreeComboBox1DropDown(Sender: TObject);  
begin  
  acTreeComboBox1.TreeView.FullExpand;  
end;  

See also
TreeOptions and SelectedNode properties;  
ExportToTreeNodes, ImportFromTreeNodes and ImportFromTreeView methods;  
OnDropDown, OnAfterDropDown and OnCloseUp events.