Skip to content

Column_Option - DataList

Allows you to query or change the iOption option line for Column iCol

Type: Property
Access: Read/Write
Data Type: Integer
Parameters: None

Parameters

Parameter Type Description
iCol Integer The column number (0-based)
iOption Integer The option

Syntax

Property Integer Column_Option
Access Type Syntax
Read Access: Get Column_Option to IntegerVariable
Write Access: Set Column_Option to IntegerVariable/Value

Description

The Column_option property allows you to query or change the iOption option line for Column iCol. The setting of the option is returned as a boolean value. The option is set or turned off by setting a boolean value in the property. iOption may be autofind, autofind_ge, findreq, forceput, noput, retain, retainall, and skipfound.

set column_option 4 to autofind true

if (column_option(self, 8, autofind_ge)) send check_status

set column_option 3 to findreq true

if (column_option(self, 1, findreq)) send check_status

set column_option 7 to noput true

if (column_option(self, 5, retain)) send check_status

set column_option 9 to retainall true

if (column_option(self, 10, skipfound)) send check_status

Default is false.