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.
The following sample code fills a string list with captions of the visible columns within the control. The GetVisibleColumnsList method uses the VisibleColumns and VisibleColumnCount properties to get access to the collection and to determine the number of visible columns within the collection.
Note that the AColumns parameter should be already initialized.
voidGetVisibleColumnsList(TStringList *AColumns){
for (int I = 0; I < cxTreeList->VisibleColumnCount; I++)
AColumns->AddObject(cxTreeList->VisibleColumns[I]->Caption->Text, cxTreeList->VisibleColumns[I]);
}
Was this page helpful?
Thanks for your feedback!
How can we improve this help topic?
Additional comments/thoughts:
If you have any questions, submit a ticket to our Support Center.