Table of Contents

Property HorizontalAlignment

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

HorizontalAlignment

Gets or sets the horizontal alignment of the dialog box item.

public string HorizontalAlignment { get; set; }

Property Value

string

The horizontal alignment of the dialog box item: “Center”, “Left”, “Right” or “Stretch”.

Examples

UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.TextBox;
blockItem.HorizontalAlignment = "Left";

uibDialogBox1.AppendBlock(blockItem);