Table of Contents

Property ConfigOptions

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

ConfigOptions

Gets or sets the configuration options.

public AutomationConfigOptions ConfigOptions { get; set; }

Property Value

AutomationConfigOptions

The configuration options.

Examples

UIBlockDefinition uibDef = new UIBlockDefinition();
uibDef.Type = UIBlockType.Time;
uibDef.InitialValue = DateTime.Now.ToString("G");

var config = new AutomationDateTimePickerOptions();
config.Format = DateTimeFormat.ShortDate;

uibDef.ConfigOptions = config;

Remarks

Only intended to be used when Type is set to UIBlockType.Time.