Teledyne LeCroy Conquest User Manual - Users Manual User Manual

Page 236

Advertising
background image

Appendix A

226

SetFieldTableHeader

SetFieldTableHeader ( fieldId,"Title" | OptionalfieldId );

Remark:

If you specified a subfield to use a separate table, this statement sets the
header title of the Interpreted Data table for that subfield. Either a string
constant or the string from a previously defined field can be the title of the
table.

Input Parameters:

fieldId:

Specifies the subfield with a dedicated table. This
identifier is the output of a AddField statement.

Title:

Specifies the string to show in the header of the table.

OptionalfieldId:

Specifies the field from which to get the header string.
This identifier is the output of a AddField statement, and
must have a description assigned in the DefineOptions
block.

Examples

Type = AddField (CURPOS, 8, "Type", "Type", "Type");

SubFieldOf(Type, Separated)

{

SetFieldTableHeader(Type, "Sub fields of Type");

T1= AddField (0, 4, "T1", "T1", "T1");

T2= AddField (4, 8, "T2", "T2", "T2");

}

Advertising