ISIAPISiteVolumeBinFolders Interface¶
Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll
COM CLSID: B602B00A-E559-413F-BE3C-0904AB67B1CE
SiteVolumeBinFolder collection wrapper interface
Declaration¶
Get an instance¶
Properties¶
Count¶
Gets the number of SiteVolumeBinFolders contained in the collection.
Type int
Code samples
this[]¶
Get the SiteVolumeBinFolder from the collection by the Folder name.
Type ISIAPISiteVolumeBinFolder
Remarks
The SiteVolumeBinFolder name is not unique in the collection. It is possible that more than one SiteVolumeBinFolder has the same name. The first SiteVolumeBinFolder found by name is returned. If no SiteVolumeBinFolder is found, null / Nothing is returned.
In C#, use ISIAPISiteVolumeBinFolders[] to get a SiteVolumeBinFolder by its name or its position in the collection.
In VBA, use Item() to get a SiteVolumeBinFolder by its name or use Item_2() to get by its position.
In C++, use get_Item() to get a SiteVolumeBinFolder by its name or use get_Item_2() by its position.
Code samples
this[]¶
Get the SiteVolumeBinFolder at the specified index.
Type ISIAPISiteVolumeBinFolder
Remarks
In C#, use ISIAPISiteVolumeBinFolders[] to get a SiteVolumeBinFolder by its name or its position in the collection.
In VBA, use Item() to get a SiteVolumeBinFolder by its name or use Item_2() to get by its position.
In C++, use get_Item() to get a SiteVolumeBinFolder by its name or use get_Item_2() by its position.
Code samples
Methods¶
SiteVolumeBinFolderExists(string)¶
Queries whether a particular SiteVolumeBinFolder exists in the collection
Parameters
| Name | Type | Description |
|---|---|---|
name |
string |
SiteVolumeBinFolder name to query |
Returns bool - True, if any SiteVolumeBinFolder with the given name exists in the collection. False otherwise
Remarks
The SiteVolumeBinFolder name is not unique in the collection. It is possible that more than one SiteVolumeBinFolder has the same name.