|
|
|
|
|
- String type and Unicode string
- System integer
TypeVar (Function) In french: TypeVar Identifies the type of an expression, a variable (during a call to a procedure for example) or a control.
PROCEDURE MaProcédure(Paramètre)
TypeVar(Paramètre)
Syntax
<Result> = TypeVar(<Expression>)
<Result>: Integer Identifies the type of variable or control value. - 0 for control s that do not return a value (button, control OLE, etc.).
- a constant (or associated value):
<Expression>: Character string Name of WLanguage variable or control whose type you want to get. Remarks String type and Unicode string In Mobile, a Unicode string is considered as being a string:
MaChaîne is string UNICODE
TypeVar(MaChaîne)
In WINDEV or WEBDEV, a Unicode string is considered as being a Unicode string:
MaChaîne is string UNICODE
TypeVar(MaChaîne)
System integer - The system integer automatically adapts to the size supported by the compilation mode (4 bytes for a program compiled in 32-bit mode, 8 bytes for a program compiled in 64-bit mode).
- For applications compiled in 32-bit mode, TypeVar returns 8 (wlInt).
- For applications compiled in 64-bit mode, TypeVar returns 9 (wlInt_8).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|