Description
Defines the width of the labels on the InputDlg form.
Syntax
dlg.SetLabelWidth(128) |
dlg
Required. Object name, returned by Dim idlg As InputDlg = New InputDlg.
Example
Dim elem As ElementProp = Page.SelElement()
Dim sel As String = "#" & CStr(DataConnection.Login.GetContext().UserId) & "_" & CStr(Now)
Dim dlg As New InputDlg
dlg.Title = Designer.Label
dlg.SetLabelWidth(128)
dlg.borderlessMode(true)
dlg.AddString("Logical group name:", sel)
dlg.AddInfoNoFocus("Insert empty value to remove grouping", 1)
dlg.ShowDialog()