Class AutomationTimePickerOptions
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLNetTypes.dll
This class allows you to create a time picker control in an interactive Automation script.
public class AutomationTimePickerOptions : AutomationDateTimeUpDownOptions
- Inheritance
-
AutomationTimePickerOptions
- Inherited Members
- Extension Methods
Examples
UIBlockDefinition blockTimePickerDefault = new UIBlockDefinition();
blockTimePickerDefault.Type = UIBlockType.Time;
AutomationTimePickerOptions configOptionsTimePickerDefault = new AutomationTimePickerOptions();
blockTimePickerDefault.ConfigOptions = configOptionsTimePickerDefault;
Remarks
note
If the name of a variable starts with the following prefix, IntelliSense in DataMiner Cube will list the object properties: timePickerConfig*
Constructors
- AutomationTimePickerOptions()
Initializes a new instance of the AutomationTimePickerOptions class.
Properties
- DEFAULT_ENDTIME
Gets the default value for the EndTime property.
- DEFAULT_FORMAT
Gets the default value for the Format property.
- DEFAULT_FORMATSTRING
Gets the default value for the FormatString property.
- DEFAULT_MAX_DROPDOWN_HEIGHT
Gets the default value for the MaxDropDownHeight property.
- DEFAULT_SHOW_DROPDOWNBUTTON
Gets the default value for the ShowDropDownButton property.
- DEFAULT_STARTTIME
Gets the default value for the StartTime property.
- DEFAULT_TIME_INTERVAL
Gets the default value for the TimeInterval property.
- EndTime
Gets or sets the last time listed in the time picker control.
- MaxDropDownHeight
Gets or sets the height of the time picker control.
- ShowDropDownButton
Gets or sets a value indicating whether to enable the drop-down button of the time picker control.
- StartTime
Gets or sets the earliest time listed in the time picker control.
- TimeInterval
Gets or sets the time interval between two time items in the time picker control.
Methods
- CreateInstanceFromDataString(string)
Creates an instance from the specified data string.
- GetOptionsAsString(bool)
Gets the options as a string.
- SetDefaultOptions()
Sets the default options.
- SetNewValueOnPropertySucceeded(string, string)
Sets the specified property to the specified value.
- ToString()
Returns a string that represents the current object.