CLASS stBaseStruct of jsStringEx

A subclass of the jsStringEx class (jsStringEx is a subclass of the stock string class) which provides a foundation to easily manage and manipulate data structures defined in virtually any API. stBaseStruct is the base class from which all other st* structures are subclassed from. See the file stWin1 for examples of using stBaseStruct to derive specific data structures for working with various API interfaces.

Syntax
[<oRef> =] new stBaseStruct([<nSize>] [,<xSTRUCT>])
<oRef>
A variable or property member which points to (references) the newly created stBaseStruct object.
<nSize> (Optional - Default = size of xSTRUCT in bytes)
The size of the structure in bytes. If <nSize> is empty and <xSTRUCT> is not empty, nSize will be defaulted to the size of <xSTRUCT> in bytes. If <nSize> and <xSTRUCT> are both empty, nSize will be defaulted to 2K (2048).
<xSTRUCT> (Optional - Default = zero'd structure of size <nSize>.
An existing dBL string containing a structure of data.

Class Members
The stBaseStruct class is subclassed from the jsStringEx class. Consult the documentation for the jsStringEx class for a description of the jsStringEx class members (properties, events, and methods).

Click the links in the left frame to view the Property Members and Method Members which are unique to the stBaseStruct class.