mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 18:35:39 +00:00
4e19d181c9
* gdk/Drawable.custom: Add Size get property 2003-01-05 Duncan Mak <duncan@ximian.com> * pango/GlyphString.custom: Add some nicer overloads to avoid explicit passing in the string length. svn path=/trunk/gtk-sharp/; revision=10193
18 lines
432 B
Plaintext
18 lines
432 B
Plaintext
// Gdk.Drawble.custom - Gdk Drawble 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 Drawble </remarks>
|
|
public System.Drawing.Size Size {
|
|
get {
|
|
int x, y;
|
|
GetSize(ref x, ref y);
|
|
return new System.Drawing.Size(x, y);
|
|
}
|
|
}
|
|
|