Table of Contents

Class AutomationCalendarOptions

Namespace
Skyline.DataMiner.Automation
Assembly
SLNetTypes.dll

This class allows you to set specific options for a calendar control in an interactive Automation script.

public class AutomationCalendarOptions : AutomationConfigOptions, IAutomationTimeOfDayConfigOptions
Inheritance
AutomationCalendarOptions
Implements
Inherited Members
Extension Methods

Examples

UIBlockDefinition blockCalendar = new UIBlockDefinition();
blockCalendar.Type = UIBlockType.Calendar;
AutomationCalendarOptions configOptionsCalendarShowSeconds = new AutomationCalendarOptions
{
	ShowSeconds = true,
};
blockCalendar.ConfigOptions = configOptionsCalendarShowSeconds;

Remarks

note

Only available from DataMiner 10.6.0/10.6.3 onwards.

Constructors

AutomationCalendarOptions()

Initializes a new instance of the AutomationCalendarOptions class.

Properties

ShowSeconds

Gets or sets if the seconds are shown.

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.