Table of Contents

Interface IStdConstantsModule

Namespace
RDCore.SDK.Runtime.Abstract.StdLib
Assembly
RDCore.SDK.dll

MS-VBAL 6.1.2.2 Constants Module

public interface IStdConstantsModule

Remarks

Formalizes the public interface of the Constants module.
Defines a series of non-printable characters, making this a bit awkward.
👉 Environment host should expose all members of this module as Const members.

Fields

VBBackChr

The Chr$ integer value represented by the vbBack constant.

public const int VBBackChr = 8

Field Value

int

VBCrChr

The Chr$ integer value represented by the vbCr constant.

public const int VBCrChr = 13

Field Value

int

VBCrLfChr

The Chr$ integer value represented by the vbCrLf constant.

public const int VBCrLfChr = 23

Field Value

int

VBFormFeedChr

The Chr$ integer value represented by the vbFormFeed constant.

public const int VBFormFeedChr = 12

Field Value

int

VBLfChr

The Chr$ integer value represented by the vbLf constant.

public const int VBLfChr = 10

Field Value

int

VBNullCharChr

The Chr$ integer value represented by the vbNullChar constant.

public const int VBNullCharChr = 0

Field Value

int

VBObjectError

The integer value represented by the vbObjectError constant.

public const int VBObjectError = -2147221504

Field Value

int

VBTabChr

The Chr$ integer value represented by the vbTab constant.

public const int VBTabChr = 9

Field Value

int

VBVerticalTabChr

The Chr$ integer value represented by the vbVerticalTab constant.

public const int VBVerticalTabChr = 11

Field Value

int

Properties

VBNewLine

An implementation-defined string value representing a new line.

string VBNewLine { get; }

Property Value

string

VBNullString

An implementation-defined string value representing a null string pointer.

string VBNullString { get; }

Property Value

string