Interface

Atk-1.0AtkTableCellInterface

Interface for implementing TableCell. Contains only the virtual methods that need to be implemented.

interface Interface {
    vfunc_get_column_header_cells(): Atk.Object[];
    vfunc_get_column_span(): number;
    vfunc_get_position(): [boolean, number, number];
    vfunc_get_row_column_span(): [boolean, number, number, number, number];
    vfunc_get_row_header_cells(): Atk.Object[];
    vfunc_get_row_span(): number;
    vfunc_get_table(): Atk.Object;
}

Hierarchy (View Summary)

Index

Methods

  • Returns the number of columns occupied by this cell accessible.

    Returns number

  • Retrieves the tabular position of this cell.

    Returns [boolean, number, number]

  • Gets the row and column indexes and span of this cell accessible.

    Note: If the object does not implement this function, then, by default, atk will implement this function by calling get_row_span and get_column_span on the object.

    Returns [boolean, number, number, number, number]

  • Returns the number of rows occupied by this cell accessible.

    Returns number