Users Manual User Manual

Appendix A
225
SetTableHeader
SetTableHeader ("Title" | OptionalfieldId);
Remark
:
This statement sets the header title of the Interpreted Data table in the Viewer.
Either a string constant or the value from a previously defined field can be the
title of the table.
Input Parameters
:
Title: Specifies the string to show in the header of the table.
OptionalfieldId: This identifier specifies the field from which to get the
header string. It is the output of a AddField statement,
and must have a description assigned in the
DefineOptions block.
Examples
OpCode = AddField (0, 8, "Op Code", "Op Code",
"Op Code");
If (ValueOf (OpCode) <> 0x01) then
{
SetTableHeader ("Read");
}