Description
Remove the title bar from the InputDlg form.
Note: such dialog box cannot be moved.
Syntax
dlg.BorderlessMode(True ¦ False) |
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()