2005-06-27 Mike Kestner <mkestner@novell.com>

* gnome/CanvasBpath.custom : a BPath property to wrap the ugly Bpath
	IntPtr prop.  [Fixes #75381]

svn path=/trunk/gtk-sharp/; revision=46565
This commit is contained in:
Mike Kestner 2005-06-27 16:00:17 +00:00
parent fba841b1af
commit d42ff66f68
3 changed files with 25 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-06-27 Mike Kestner <mkestner@novell.com>
* gnome/CanvasBpath.custom : a BPath property to wrap the ugly Bpath
IntPtr prop. [Fixes #75381]
2005-06-24 Mike Kestner <mkestner@novell.com>
* atk/Atk.metadata : couple of small api cleanups.

View File

@ -118,5 +118,17 @@
<remarks>To be added</remarks>
</Docs>
</Member>
<Member MemberName="BPath">
<MemberSignature Language="C#" Value="public Gnome.CanvasPathDef BPath { set; get; };" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>Gnome.CanvasPathDef</ReturnType>
</ReturnValue>
<Docs>
<summary>The Path definition for this shape.</summary>
<value>a <see cref="T:Gnome.CanvasPathDef" /> describing the shape.</value>
<remarks />
</Docs>
</Member>
</Members>
</Type>

View File

@ -24,3 +24,11 @@ public CanvasBpath (Gnome.CanvasGroup group) : base (group, GType)
{
}
public CanvasPathDef BPath {
get {
return new CanvasPathDef (Bpath);
}
set {
Bpath = value.Handle;
}
}