Column.Count

Description

The number of columns in the DataWindow object.

Applies to

DataWindows

Syntax

DataWindow .NET dot notation:

dw_control.ColumnCount

Describe argument:

"DataWindow.Column.Count"

Usage


In the painter

The value is determined by the number of columns you select in the Select painter, whether or not they are displayed.

In DataWindow .NET, you can use the ColumnCount property on DataWindowControl, WebDataWindowControl, DataStore, and DataWindowChild to get the number of columns.

NoteColumn limit There is a limit of 1000 on the number of columns in a DataWindow object.

Examples

Example 1

[C#}
short ColCount;

ColCount = dw_1.ColumnCount;

Example 2

[Visual Basic]
ls_colcount = dw_1.Describe("DataWindow.Column.Count")