enum ListSourceType in module com::sun::star::form::

(Global Index)

Syntax

enum ListSourceType;

Description

describes the kind of data source used to fill the list data of a listbox or a combobox.

Values Summary

VALUELIST filled with a stringlist of values.

TABLE filled with the data of a table.

QUERY filled with the results of a database query.

SQL filled with the results of a database statement.

SQLPASSTHROUGH filled with the results of a database statement, which is not evaluated by the database engine.

TABLEFIELDS filled with the field names of a database table.

Values Details



VALUELIST

Syntax

VALUELIST,

Description

filled with a stringlist of values.


TABLE

Syntax

TABLE,

Description

filled with the data of a table.


QUERY

Syntax

QUERY,

Description

filled with the results of a database query.


SQL

Syntax

SQL,

Description

filled with the results of a database statement.


SQLPASSTHROUGH

Syntax

SQLPASSTHROUGH,

Description

filled with the results of a database statement, which is not evaluated by the database engine.


TABLEFIELDS

Syntax

TABLEFIELDS,

Description

filled with the field names of a database table.

Top of Page