56711895f9
svn path=/trunk/gtk-sharp/; revision=10194
17 lines
425 B
Text
17 lines
425 B
Text
// 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 (out x, out y);
|
|
return new System.Drawing.Size (x, y);
|
|
}
|
|
}
|
|
|