📚 SAP Business One SDK Help

Settings Property
See Also  Example

Description

The form settings object for the form.

Property type

Read-only property

Syntax

Visual Basic
Public Property Settings() As FormSettings

Remarks

Relevant only for user-defined forms. On system forms, the property throws an exception.

Example

Setting Grid Form Settings
form settings (Visual Basic)Copy Code
Dim oForm As SAPbouiCOM.Form
    oForm = SBO_Application.Forms.ActiveForm

Dim fSettings As SAPbouiCOM.FormSettings
    fSettings = oForm.Settings
    fSettings .MatrixUID = "MyGrid"

See Also