Method

AtkTableCellget_row_column_span

Declaration [src]

gboolean
atk_table_cell_get_row_column_span (
  AtkTableCell* cell,
  gint* row,
  gint* column,
  gint* row_span,
  gint* column_span
)

Description [src]

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.

Available since:2.12

Parameters

row gint*
 

The row index of the given cell.

 The argument will be set by the function.
 The instance takes ownership of the data, and is responsible for freeing it.
column gint*
 

The column index of the given cell.

 The argument will be set by the function.
 The instance takes ownership of the data, and is responsible for freeing it.
row_span gint*
 

The number of rows occupied by this cell.

 The argument will be set by the function.
 The instance takes ownership of the data, and is responsible for freeing it.
column_span gint*
 

The number of columns occupied by this cell.

 The argument will be set by the function.
 The instance takes ownership of the data, and is responsible for freeing it.

Return value

Returns: gboolean
 

TRUE if successful; FALSE otherwise.