Struct
PangoRectangle
Description [src]
struct PangoRectangle {
  int x;
  int y;
  int width;
  int height;
}
The PangoRectangle structure represents a rectangle.
PangoRectangle is frequently used to represent the logical or ink
extents of a single glyph or section of text. (See, for instance,
pango_font_get_glyph_extents().).
Structure members
- x
- X coordinate of the left side of the rectangle. 
- y
- Y coordinate of the the top side of the rectangle. 
- width
- Width of the rectangle. 
- height
- Height of the rectangle.