Interface IVariableMetaData
The methods and properties in the VariableMetaData class manage model variable metadata.
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IVariableMetaData : IMetaData
Remarks
The methods and properties in the VariableMetaData class manage model variable metadata.
Properties
DefaultValue
Gets the default value for the model variable.
Declaration
string DefaultValue { get; }
Property Value
Type | Description |
---|---|
string | This property returns the default value for the model variable. |
Remarks
Gets the default value for the model variable.
InitType
Gets the initialization type for the model variable.
Declaration
VariableInitialization InitType { get; }
Property Value
Type | Description |
---|---|
VariableInitialization | The value returned is a member of the VariableInitialization enumeration. |
Remarks
Gets the initialization type for the model variable.
IsEncrypted
Gets whether the model variable is encrypted.
Declaration
bool IsEncrypted { get; }
Property Value
Type | Description |
---|---|
bool | This property returns a boolean indicating whether the model variable is encrypted. |
Remarks
Gets whether the model variable is encrypted.
IsHidden
Gets whether the model variable is hidden.
Declaration
bool IsHidden { get; }
Property Value
Type | Description |
---|---|
bool | This property returns a boolean indicating whether the model variable is hidden. |
Remarks
Gets whether the model variable is hidden.
IsReadable
Gets whether the model variable is readable.
Declaration
bool IsReadable { get; }
Property Value
Type | Description |
---|---|
bool | This property returns a boolean indicating whether the model variable is readable. |
Remarks
Gets whether the model variable is readable.
IsWriteable
Gets whether the model variable is writeable.
Declaration
bool IsWriteable { get; }
Property Value
Type | Description |
---|---|
bool | This property returns a boolean indicating whether the model variable is writeable. |
Remarks
Gets whether the model variable is writeable.
Kind
Gets the type of the variable.
Declaration
VariableKind Kind { get; }
Property Value
Type | Description |
---|---|
VariableKind | The value returned is a member of the VariableKind enumeration. |
Remarks
Gets the type of the variable.
Methods
ToString()
Generates a string object that represents the current values of this IVariableMetaData object.
Declaration
string ToString()
Returns
Type | Description |
---|---|
string | the string representation of this object |