public void SelectObjects( string strFullLinkFileName, StringCollection objectIds, bool bDeselectAll )
public: void SelectObjects( String^ strFullLinkFileName, StringCollection^ objectIds, bool bDeselectAll )
Parameters
| Parameter Name | Description |
|---|---|
| strFullLinkFileName | Full link file name of the project. The already selected objects will be deselected. |
| objectIds | List of Ids of objects to be selected. Note that an object Id MUST have three parts separated with slash: Type/Id/transient flag. Transient flag can have 2 values, 0 means object is persistent, 1 means object is transient. e.g.: 17/142/0. When you get the object Id from Properties.PROPUSER_DBOBJECTID, you have to remove the first number (project id) and the first '/' from this string (see example). |
| bDeselectAll | Deselect all objects which were already selected. |