Method | Description | |
---|---|---|
AddRecord ( |
Adds the given sub-record to the record.
|
|
Clone ( ) : |
Clones the record.
|
|
DeleteRecord ( |
Deletes the specified sub-record from the record.
|
|
GetData ( ) : byte[] |
Gets the sub-record's data.
|
|
GetDesc ( ) : string |
Gets the sub-record's description.
|
|
GetHexData ( ) : string |
Gets the sub-record's data as a hex number.
|
|
GetStrData ( ) : string |
Gets the sub-record's data as a string.
|
|
SetData ( byte data ) : void |
Sets the sub-record's data.
|
|
SetStrData ( string s, bool nullTerminate ) : void |
Sets the sub-record's data tot he given string.
|
|
SubRecord ( ) : System |
The default constructor.
|
Method | Description | |
---|---|---|
GetFormattedData ( |
||
GetIDs ( bool lower ) : List |
Gets the ids of the sub-records in the record.
|
|
GetReadonlyData ( ) : byte[] | ||
SaveData ( |
||
SubRecord ( |
The copy constructor.
|
|
SubRecord ( string name, |
A simple constructor that initializes the object with ther given values.
|
public AddRecord ( |
||
br | The record to add. | |
return | void |
public DeleteRecord ( |
||
br | The record to delete. | |
return | void |
public SetStrData ( string s, bool nullTerminate ) : void | ||
s | string | The string to which to set the sub-record's data. |
nullTerminate | bool | Whether to nul-terminate the given string. |
return | void |