Package: gtk

Accessor gtk-table-row-spacing

Lambda List

gtk-table-row-spacing (object)

Syntax

(gtk-table-row-spacing object) => spacing
(setf (gtk-table-row-spacing object) spacing)

Arguments

table -- a gtk-table widget
spacing -- an unsigned integer with the number of pixels of space to place between every row in the table

Details

Accessor of the row-spacing slot of the gtk-table class.

The slot access function gtk-table-row-spacing gets the default row spacing for the table. The slot access function gtk-table-row-spacing sets the row spacing. This is the spacing that will be used for newly added rows.

Lisp implementation

The C library has the functions gtk_table_get_default_row_spacing () and gtk_table_set_row_spacings (), which correspond to the slot access function gtk-table-row-spacing. These C functions are not implemented in the Lisp library.

Warning

The function gtk-table-row-spacing has been deprecated since version 3.4 and should not be used in newly written code. Use the gtk-grid widget with the function gtk-grid-row-spacing.
 

See also

*2021-7-20