šŸ“š SAP Business One SDK Help

Extended Object Property
See AlsoĀ  Example

Description

The LinkedButton object tied to this column. Relevant only if the column is type it_LINKED_BUTTON.

Property type

Read-only property

Syntax

Visual Basic
Public Property ExtendedObject() As Object

Remarks

Use this object to create a link to another object from a column with a link arrow.

GetĀ theĀ LinkedButton object of the column, and linkĀ the buttonĀ to anĀ object.

Example

Adding a linked button column (Visual Basic)Copy Code
Dim oLink As SAPbouiCOM.LinkedButton

Set oColumn = oColumns.Add("A", it_LINKED_BUTTON)
oColumn.DataBind.SetBound("True","","linkDataSource")

Set oLink = oColumn.ExtendedObject
oLink.LinkedObject = lf_BusinessPartner

See Also