Ryujinx-GtkSharp/pango/Layout.custom

18 lines
453 B
Plaintext
Raw Normal View History

// Pango.Layout.custom - Pango Layout class customizations
//
// Author: Pedro Abelleira Seco <pedroabelleira@yahoo.es>
//
// This code is inserted after the automatically generated code.
/// <summary> Size property </summary>
/// <remarks> Returns the size of the Layout </remarks>
public System.Drawing.Size Size {
get {
int width, height;
GetSize (out width, out height);
return new System.Drawing.Size (width, height);
}
}