TOptionTab
Syntax
enum TOptionTab {
INPUTS,
STYLE,
}Values
Value
Description
Description
Example
Init(): void {
// Register an option in the Inputs tab (default)
this.api.RegOption('Period', TOptionType.INTEGER, this.Period, true, true, TOptionTab.INPUTS)
// Register an option in the Style tab
this.api.RegOption('Line Color', TOptionType.COLOR, this.LineColor, true, true, TOptionTab.STYLE)
}See Also
Last updated