TablePattern.TablePatternInformation.ColumnCount Property

Definition

Gets the total number of columns in a table.

C#
public int ColumnCount { get; }

Property Value

The total number of columns in a table. The default value is zero.

Examples

In the following example, a TablePattern object obtained from a target control is passed into a function that retrieves the current TablePattern property values.

C#
///--------------------------------------------------------------------
/// <summary>
/// Gets the current property values from target.
/// </summary>
/// <param name="tablePattern">
/// A TablePattern control pattern obtained from 
/// an automation element representing a target control.
/// </param>
///--------------------------------------------------------------------
private void GetRowColumnCounts(TablePattern tablePattern)
{
    if (tablePattern == null)
    {
        throw new ArgumentException("Target element cannot be null.");
    }

    Console.WriteLine(tablePattern.Current.RowCount.ToString());
    Console.WriteLine(tablePattern.Current.ColumnCount.ToString());
}

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also