SbNativeStringArrayItem Property |
Gets or sets the element at the specified index.
Namespace: OIV.InventorAssembly: OIV.Inventor.Base (in OIV.Inventor.Base.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public string this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As String
Get
Set
public:
property String^ default[int index] {
String^ get (int index);
void set (int index, String^ value);
}
member Item : string with get, set
Parameters
- index
- Type: SystemInt32
The zero-based index of the element to get or set.
Return Value
Type:
StringThe element of type
String at the specified index.
Exceptions Exception | Condition |
---|
InvalidOperationException | If the native array is not well known. |
IndexOutOfRangeException | If index if out of range. |
See Also