BorderlessMode Method (InputDlg)

Build 1501 on 14/Nov/2017  This topic last edited on: 22/Mar/2016, at 17:09

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() 

 

 inputdlgborderlessmode