| Top |  |  |  |  | 
| void | gtk_misc_set_alignment () | 
| void | gtk_misc_set_padding () | 
| void | gtk_misc_get_alignment () | 
| void | gtk_misc_get_padding () | 
    GObject
    ╰── GInitiallyUnowned
        ╰── GtkObject
            ╰── GtkWidget
                ╰── GtkMisc
                    ├── GtkLabel
                    ├── GtkArrow
                    ├── GtkImage
                    ╰── GtkPixmap
void gtk_misc_set_alignment (GtkMisc *misc,gfloat xalign,gfloat yalign);
void gtk_misc_get_alignment (GtkMisc *misc,gfloat *xalign,gfloat *yalign);
Gets the X and Y alignment of the widget within its allocation. 
See gtk_misc_set_alignment().
| misc | a GtkMisc | |
| xalign | location to store X alignment of  | [out][allow-none] | 
| yalign | location to store Y alignment of  | [out][allow-none] | 
void gtk_misc_get_padding (GtkMisc *misc,gint *xpad,gint *ypad);
Gets the padding in the X and Y directions of the widget. 
See gtk_misc_set_padding().
| misc | a GtkMisc | |
| xpad | location to store padding in the X
direction, or  | [out][allow-none] | 
| ypad | location to store padding in the Y
direction, or  | [out][allow-none] | 
“xalign” property  “xalign”                   float
The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts.
Owner: GtkMisc
Flags: Read / Write
Allowed values: [0,1]
Default value: 0.5
“xpad” property  “xpad”                     int
The amount of space to add on the left and right of the widget, in pixels.
Owner: GtkMisc
Flags: Read / Write
Allowed values: >= 0
Default value: 0
“yalign” property  “yalign”                   float
The vertical alignment, from 0 (top) to 1 (bottom).
Owner: GtkMisc
Flags: Read / Write
Allowed values: [0,1]
Default value: 0.5