RowOrColumnMajor Enumerated Type

Contains values that specify whether data in a table should be read primarily by row or by column.

Syntax

typedef enum {
    RowOrColumnMajor_RowMajor,
    RowOrColumnMajor_ColumnMajor,
    RowOrColumnMajor_Indeterminate
} RowOrColumnMajor;

Constants

  • RowOrColumnMajor_RowMajor
    Data in the table should be read row by row.

  • RowOrColumnMajor_ColumnMajor
    Data in the table should be read column by column.

  • RowOrColumnMajor_Indeterminate
    The best way to present the data is indeterminate.

Enumerated Type Information

Header uiautomationcore.h
Minimum operating systems Windows XP

See Also

Text Attribute Identifiers