GetHeaderPart()
GetHeaderPart()
Definition
Indicates the tab header name.
Examples
// NTTabPage member. Required for determining the tab header nameprotected override string GetHeaderPart(string variable){// Determine the text for the tab header nameswitch (variable){case "@INSTRUMENT": return Instrument == null ? Resource.GuiNewTab : Instrument.MasterInstrument.Name;case "@INSTRUMENT_FULL": return Instrument == null ? Resource.GuiNewTab : Instrument.FullName;}return variable;}