|
|
|
DataObjectFiles.Count Property |
Returns the number of filenames in the Files collection of a DataObject object (sftCFFiles format only).
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 DataObjectFiles object.
Total
Returns the number of filenames in the Files collection of a DataObject object (sftCFFiles format only).
Comments
The Count property returns the number of filenames in the Files collection of a DataObject object (sftCFFiles format only).
This property can be used to iterate through all file names in the Files collection.