ISIAPISiteFolders Interface¶
Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll
COM CLSID: 422C915D-C65C-4E49-BE6A-9F77C6E031BE
SiteFolder collection wrapper interface
Declaration¶
Get an instance¶
Properties¶
Count¶
Gets the number of SiteFolders contained in the collection.
Type int
Code samples
this[]¶
Get the SiteFolder from the collection by the SiteFolder name.
Type ISIAPISiteFolder
Remarks
The SiteFolder name is not unique in the collection. It is possible that more than one SiteFolder has the same name. The first SiteFolder found by name is returned. If no SiteFolder is found, null / Nothing is returned.
In C#, use ISIAPISiteFolders[] to get a SiteFolder by its name or its position in the collection.
In VBA, use Item() to get a SiteFolder by its name or use Item_2() to get by its position.
In C++, use get_Item() to get a SiteFolder by its name or use get_Item_2() by its position.
Code samples
this[]¶
Get the SiteFolder at the specified index.
Type ISIAPISiteFolder
Remarks
In C#, use ISIAPISiteFolders[] to get a SiteFolder by its name or its position in the collection.
In VBA, use Item() to get a SiteFolder by its name or use Item_2() to get by its position.
In C++, use get_Item() to get a SiteFolder by its name or use get_Item_2() by its position.
Code samples
Methods¶
SiteFolderExists(string)¶
Queries whether a particular SiteFolder exists in the collection
Parameters
| Name | Type | Description |
|---|---|---|
name |
string |
SiteFolder name to query |
Returns bool - True, if any SiteFolder with the given name exists in the collection. False otherwise
Remarks
The SiteFolder name is not unique in the collection. It is possible that more than one SiteFolder has the same name.