Determines if the column has hyperlinks.

Set_Property(OLECtrlEntID, "OLE.ColumnHyperlink[col]", Boolean)

[True | False]

Default: False

IndexDescription
colThe index to a column in the report table

The ColumnHyperlink property determines whether or not the column has hyperlinks. If true, then each item's text in the column behaves like a hyperlink and fires the OnItemHyperlink event when clicked. If false, the text is displayed normally.

You can enable and disable hyperlinks on a per item basis using the ItemHyperlink property.

// Hyperlinks on column 2, please 
Set_Property(@Window:".OLE_REPORTTABLE", "OLE.ColumnHyperlink[2]", 1)

ItemHyperlink

  • No labels