FormTreeControl.getVisibleCount Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the number of visible items in the tree control.
public:
virtual int getVisibleCount();
public virtual int getVisibleCount ();
abstract member getVisibleCount : unit -> int
override this.getVisibleCount : unit -> int
Public Overridable Function getVisibleCount () As Integer
Returns
The number of visible items in the tree control.
Remarks
The following example shows how to retrieve the number of visible items in the tree control.
int nCount;
nCount = this.getVisibleCount();
info (strfmt("getVisibleCount: %1", int2str(nCount)));