Property | Type | Description | |
---|---|---|---|
name | string |
Method | Description | |
---|---|---|
Base ( ) : System |
Constructor of clear object.
|
|
Base ( |
Constructor, which creates a clone of a particular var.
|
|
Base ( string sName ) : System |
Constructor of an empty var with a particular name.
|
|
Base ( string sName, String sParam ) : System |
Constructor of a string-typed var.
|
|
Base ( string sName, double dParam ) : System |
Constructor of a double-typed var.
|
|
Base ( string sName, long lParam ) : System |
Constructor of a longint-typed var.
|
|
Clear ( ) : void |
Change var's value to null. Name doesn't change
|
|
Get ( ) : string |
Gets a value of the var.
|
|
Set ( |
Sets a value to the var by copying it form another var.
|
|
Set ( String sParam ) : void |
Sets a string value.
|
|
Set ( double dParam ) : void |
Sets a double value to the var
|
|
Set ( long lParam ) : void |
Sets longint value to the var.
|
|
SetUntyped ( string sParam ) : void |
Sets a var value of unknown type (type of var is automaticly checked) Unnamed var.
|
|
SetUntyped ( string sName, string sParam ) : void |
Sets a var value of unknown type (type of var is automaticly checked)
|
|
operator ( ) : |
||
operator ( ) : bool |
public Base ( string sName ) : System | ||
sName | string | Name of the var. |
return | System |
public Base ( string sName, String sParam ) : System | ||
sName | string | Name of the var. |
sParam | String | Value of the var (string) |
return | System |
public Base ( string sName, double dParam ) : System | ||
sName | string | Name of the var. |
dParam | double | Value of the var (double) |
return | System |
public Base ( string sName, long lParam ) : System | ||
sName | string | Name of the var. |
lParam | long | Value of the var (longint) |
return | System |
public Set ( |
||
bParam | Base var to get value from. | |
return | void |
public Set ( double dParam ) : void | ||
dParam | double | Double value of the var. |
return | void |
public SetUntyped ( string sParam ) : void | ||
sParam | string | Var value |
return | void |
public SetUntyped ( string sName, string sParam ) : void | ||
sName | string | Var name |
sParam | string | Var value |
return | void |