IHYCrossPlatformStringList
Overview
The IHYCrossPlatformStringList interface represents a list of strings that can be used in a cross platform environment.
Currently, this interface is not implemented by Hydra classes, so in order to use this interface in your plugins, you need to provide your own implementation.
Location
- Reference: RemObjects.Hydra.dll
- Namespace: RemObjects.Hydra.CrossPlatform
- Ancestry: IHYCrossPlatformInterface | IHYCrossPlatformStringList
Properties
Count
Returns the number of strings.
property Count: Int32 read;
Int32 Count { get; }
ReadOnly Property Count() As Int32
Strings
Gets a string with given index.
property Strings[index: Int32]: String read write;
String Strings[Int32 index] { get; set; }
Property Strings(index As Int32) As String
Required Methods
Add
method Add(value: String)
void Add(String value)
Sub Add(value As String)
Parameters:
- value:
Insert
method Insert(index: Int32; value: String)
void Insert(Int32 index, String value)
Sub Insert(index As Int32, value As String)
Parameters:
- index:
- value:
Remove
method Remove(index: Int32)
void Remove(Int32 index)
Sub Remove(index As Int32)
Parameters:
- index:
-
IHYCrossPlatformStringList Interface
- .NET
- Delphi