Okapi .NET Library

IUtilitySet.GetUtilityIdentifier Method 

 [This is preliminary documentation and subject to change.]

Gets the identifier of a specified utility of the set.

[Visual Basic]
Function GetUtilityIdentifier( _ 
   ByVal p_nIndex As Integer _ 
) As String
[C#]
string GetUtilityIdentifier(
   int p_nIndex
);
[C++]
String* GetUtilityIdentifier(
   int p_nIndex
);
[JScript]
function GetUtilityIdentifier(
   int p_nIndex
): String;

Parameters

p_nIndex
Index of the utility to look-up. The value must be between 0 and GetUtilityCount - 1.

Return Value

The string that identify the specified utility.

Remarks

Use this method to retrieve the identifier of a specified utility. Each utility must have an identifier unique withing the utility set.

See Also

IUtilitySet Interface | Okapi.Library.Utility Namespace | GetUtilityCount