The PtColLabelCount option sets the number of Labels in the data source. The option value is an integer.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “data_src_filename”)
object.Option(“PtColLabelCount”, “OptionValue”)
object.Do() or object.DoOnce()
The following example sets the number of label columns to four.
'Set the number of label columns
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","Mineral Concentration.dat")
CommandApi.Option("PtColLabelCount","4")
CommandApi.Do()
Used by: DataSrc