|
|
|
|
|
SftBoxItems.Count Property |
Returns the number of items in the control.
Syntax
|
VB.NET |
Total = object.Count As Integer |
||
|
VB |
Total = object.Count As Long |
||
|
C#.NET |
int Total = object.Count; |
||
|
VC++ |
long Total = object->Count;
|
||
|
C |
HRESULT object->get_Count(long* Total); |
||
|
Delphi |
Total := object.Count : Integer; |
||
object
A SftBoxItems object.
Total
Returns the number of items in the control.
Comments
The Count property returns the number of items in the control.
Items are added using the Items.Add or Items.Insert methods.