TOptValue_TimeOnly
What Is It?
When to Use
Syntax
// Declare the parameter in the class fields
public MyTimeParameter!: TOptValue_TimeOnly;
public Init(): void {
// Create the parameter
this.MyTimeParameter = this.api.createTOptValue_TimeOnly(defaultTimeValue);
// Register the parameter
this.api.RegOption("MyTimeParameter", TOptionType.TIME_ONLY, this.MyTimeParameter);
}Example
Notes
Last updated