DataTree.GetValueType
Allows to read the type of data that the value holds.
[C++]
MCValueType GetValueType(char* Key, char* ValueName);
[Pascal]
function GetValueType(Key, ValueName : string): TMCValueType;
[VB6]
not applicable;
[ActiveX]
not applicable;
[C#]
public int GetValueType(string Key, string ValueName);
[VB.NET]
Public Function GetValueType(ByVal Key As String, ByVal ValueName As String) As Integer
[Java]
public int GetValueType(String Key, String ValueName);
[Java ME]
public int GetValueType(String Key, String ValueName);
[Palm]
MCValueType GetValueType(char* Key, char* ValueName);
[DLL]
not applicable;
- Key - key name. For more information look here.
- ValueName - value name. For more information look here.
Type of the data that the value holds.
Use this method to get type of data that the specified value holds.
|