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 gtk:table-column-spacing function gets the default column spacing for the table. The (setf gtk:table-column-spacing) function sets the column spacing. This is the spacing that will be used for newly added columns.

Lisp implementation

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

Warning

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

See also

2024-6-27