Package: gtk

Accessor gtk-table-column-spacing

Lambda List

gtk-table-column-spacing (object)

Syntax

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

Arguments

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

Details

Accessor of the column-spacing property of the gtk-table class.

The slot access function gtk-table-column-spacing gets the default column spacing for the table. The slot access function (setf gtk-table-column-spacing) sets the column spacing. This is the spacing that will be used for newly added columns.

Lisp implementation

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

Warning

The function gtk-table-column-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-column-spacing.
 

See also

*2021-7-20