2003-02-12 02:14:42 +00:00
<Type Name= "CanvasLine" FullName= "Gnome.CanvasLine" >
2005-05-23 20:41:51 +00:00
<TypeSignature Language= "C#" Maintainer= "auto" Value= "public class CanvasLine : Gnome.CanvasItem" />
2003-02-12 02:14:42 +00:00
<AssemblyInfo >
<AssemblyName > gnome-sharp</AssemblyName>
2003-12-24 01:35:30 +00:00
<AssemblyPublicKey >
</AssemblyPublicKey>
2005-12-09 23:12:49 +00:00
<AssemblyVersion > 2.8.0.0</AssemblyVersion>
2003-02-12 02:14:42 +00:00
</AssemblyInfo>
2003-02-23 07:26:30 +00:00
<ThreadSafetyStatement > Gtk# is thread aware, but not thread safe; See the <link location= "node:gtk-sharp/programming/threads" > Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Line canvas item</summary>
<remarks >
A canvas item for drawing lines. This canvas item uses a
<see cref= "T:Gnome.CanvasPoints" /> structure so one or multiple joined lined
segments can be drawn with a single <see cref= "T:Gnome.CanvasLine" /> item.
2004-04-11 18:45:51 +00:00
<example >
<code lang= "C#" >
// LineExample.cs - Displays triangle using gnome canvas
// Compile: mcs -r gtk-sharp.dll -r gnome-sharp.dll LineExample.cs
namespace GnomeSamples {
using System;
using Gtk;
using Gnome;
public class LineExample {
public static int Main (string[] args) {
Application.Init ();
Gtk.Window win = new Gtk.Window ("Canvas line example");
win.DeleteEvent += new DeleteEventHandler (Window_Delete);
Canvas canvas = new Canvas ();
win.Add (canvas);
CanvasLine line = new CanvasLine (canvas.Root ());
line.Points = new CanvasPoints (new double[]{40,0, 0,80, 80,80, 40,0});
win.ShowAll ();
Application.Run ();
return 0;
}
static void Window_Delete (object obj, DeleteEventArgs args) {
Application.Quit ();
args.RetVal = true;
}
}
}
</code>
</example> </remarks>
2003-02-12 02:14:42 +00:00
</Docs>
<Base >
<BaseTypeName > Gnome.CanvasItem</BaseTypeName>
</Base>
<Interfaces >
</Interfaces>
<Members >
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public CanvasLine (IntPtr raw);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
2003-07-30 06:34:41 +00:00
<Parameter Name= "raw" Type= "System.IntPtr" />
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-02-23 07:26:30 +00:00
<summary > Internal constructor</summary>
<param name= "raw" > Pointer to the C object.</param>
<remarks >
<para > This is an internal constructor, and should not be used by user code.</para>
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public CanvasLine (Gnome.CanvasGroup group);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
2003-07-30 06:34:41 +00:00
<Parameter Name= "group" Type= "Gnome.CanvasGroup" />
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Creates a new line</summary>
<param name= "group" >
The <see cref= "T:Gnome.CanvasGroup" /> that this item
belongs to.
</param>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
</Member>
<Member MemberName= "FillStipple" >
<MemberSignature Language= "C#" Value= "public Gdk.Drawable FillStipple { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.Drawable</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Stipple pattern for the line.</summary>
2005-05-23 20:41:51 +00:00
<value > Stipple pattern for the line.</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="fill_stipple")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "ArrowShapeB" >
<MemberSignature Language= "C#" Value= "public double ArrowShapeB { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Double</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary >
Distance from tip of arrowhead to trailing point, measured
along the shaft.
</summary>
2005-05-23 20:41:51 +00:00
<value > Distance from tip of arrowhead to trailing point, measured along shaft.</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="arrow_shape_b")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "ArrowShapeA" >
<MemberSignature Language= "C#" Value= "public double ArrowShapeA { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Double</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Distance from tip of arrowhead to center.</summary>
2005-05-23 20:41:51 +00:00
<value > Distance from tip of arrowhead to center.</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="arrow_shape_a")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "Smooth" >
2005-01-07 20:55:53 +00:00
<MemberSignature Language= "C#" Value= "public bool Smooth { set; get; };" />
2003-02-12 02:14:42 +00:00
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Specifies whether to smooth the line using parabolic splines.</summary>
2005-05-23 20:41:51 +00:00
<value > Whether to smooth the line using parabolic splines</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="smooth")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "LineStyle" >
<MemberSignature Language= "C#" Value= "public Gdk.LineStyle LineStyle { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.LineStyle</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Line dash style.</summary>
2005-05-23 20:41:51 +00:00
<value > Line dash style</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="line_style")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "Points" >
<MemberSignature Language= "C#" Value= "public Gnome.CanvasPoints Points { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gnome.CanvasPoints</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > a <see cref= "T:Gnome.CanvasPoints" /> pointer. This
can be created by a call to the <see cref= "C:Gnome.CanvasPoints" /> constructor.
</summary>
2005-05-23 20:41:51 +00:00
<value > a <see cref= "T:Gnome.CanvasPoints" /> pointer.</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="points")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "FirstArrowhead" >
2005-01-07 20:55:53 +00:00
<MemberSignature Language= "C#" Value= "public bool FirstArrowhead { set; get; };" />
2003-02-12 02:14:42 +00:00
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Specifies whether to draw an arrowhead on the first point of the line.</summary>
2005-05-23 20:41:51 +00:00
<value > whether to draw an arrowhead on the first point of the line.</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="first_arrowhead")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "SplineSteps" >
<MemberSignature Language= "C#" Value= "public uint SplineSteps { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.UInt32</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Specifies the number of steps to use when rendering curves.</summary>
2005-05-23 20:41:51 +00:00
<value > the number of steps to use when rendering curves.</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="spline_steps")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "LastArrowhead" >
2005-01-07 20:55:53 +00:00
<MemberSignature Language= "C#" Value= "public bool LastArrowhead { set; get; };" />
2003-02-12 02:14:42 +00:00
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Specifies whether to draw an arrowhead on the last point of the line.</summary>
2005-05-23 20:41:51 +00:00
<value > whether to draw an arrowhead on the last point of the line.</value>
2005-01-07 20:55:53 +00:00
<remarks > To be added</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="last_arrowhead")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "CapStyle" >
<MemberSignature Language= "C#" Value= "public Gdk.CapStyle CapStyle { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.CapStyle</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Determines how the ends of lines are drawn (the line cap style).</summary>
2005-05-23 20:41:51 +00:00
<value > the line cap style</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="cap_style")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "JoinStyle" >
<MemberSignature Language= "C#" Value= "public Gdk.JoinStyle JoinStyle { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.JoinStyle</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Vertex join style for line segments</summary>
2005-05-23 20:41:51 +00:00
<value > Vertex join style</value>
2003-07-30 06:34:41 +00:00
<remarks >
<para >
(<see cref= "F:Gdk.JoinStyle.Miter" /> to join by extending
each line to meet at an angle, <see cref= "F:Gdk.JoinStyle.Round" /> to join by a circular arc,
and <see cref= "F:Gdk.JoinStyle.Bevel" /> to join by a
straight line which makes an equal angle with each line)
</para>
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="join_style")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "FillColorRgba" >
<MemberSignature Language= "C#" Value= "public uint FillColorRgba { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.UInt32</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Line color with an alpha component (in the format 0xRRGGBBAA).</summary>
2005-05-23 20:41:51 +00:00
<value > the line color</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="fill_color_rgba")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "FillColorGdk" >
<MemberSignature Language= "C#" Value= "public Gdk.Color FillColorGdk { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.Color</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > The <see cref= "T:Gdk.Color" /> to draw the line with.</summary>
2005-05-23 20:41:51 +00:00
<value > the line color</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="fill_color_gdk")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "WidthUnits" >
<MemberSignature Language= "C#" Value= "public double WidthUnits { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Double</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Width of the line in canvas units. The line width will be scaled when the canvas zoom factor changes.</summary>
2005-05-23 20:41:51 +00:00
<value > width of the line in canvas units</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="width_units")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "ArrowShapeC" >
<MemberSignature Language= "C#" Value= "public double ArrowShapeC { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Double</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Distance of arrowhead trailing points from outside edge of shaft.</summary>
2005-05-23 20:41:51 +00:00
<value > Distance of arrowhead trailing points from outside edge of shaft.</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="arrow_shape_c")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "WidthPixels" >
<MemberSignature Language= "C#" Value= "public uint WidthPixels { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.UInt32</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > Width of the line in pixels. The line width will not be scaled when the canvas zoom factor changes.</summary>
2005-05-23 20:41:51 +00:00
<value > width of the line in pixels.</value>
2005-01-07 20:55:53 +00:00
<remarks > To be added</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="width_pixels")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-02-12 02:14:42 +00:00
<Member MemberName= "FillColor" >
<MemberSignature Language= "C#" Value= "public string FillColor { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:14:42 +00:00
<Docs >
2003-07-30 06:34:41 +00:00
<summary > X color specification for line.</summary>
2005-05-23 20:41:51 +00:00
<value > X color specification for the line</value>
2003-12-24 01:35:30 +00:00
<remarks >
</remarks>
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > GLib.Property(Name="fill_color")</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2003-12-24 01:35:30 +00:00
<Member MemberName= "GType" >
<MemberSignature Language= "C#" Value= "public static GLib.GType GType { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > GLib.GType</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
2004-06-21 20:14:42 +00:00
<summary > GType Property.</summary>
2005-05-23 20:41:51 +00:00
<value > a <see cref= "T:GLib.GType" /> </value>
2004-06-21 20:14:42 +00:00
<remarks > Returns the native <see cref= "T:GLib.GType" /> value for <see cref= "T:Gnome.CanvasLine" /> .</remarks>
2003-02-12 02:14:42 +00:00
</Docs>
</Member>
2003-03-07 01:30:00 +00:00
<Member MemberName= ".ctor" >
2003-12-24 01:35:30 +00:00
<MemberSignature Language= "C#" Value= "protected CanvasLine (GLib.GType gtype);" />
2003-03-07 01:30:00 +00:00
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
2003-12-24 01:35:30 +00:00
<Parameter Name= "gtype" Type= "GLib.GType" />
2003-07-30 06:34:41 +00:00
</Parameters>
2003-03-07 01:30:00 +00:00
<Docs >
2004-06-21 20:33:11 +00:00
<summary > Protected Constructor.</summary>
2003-12-24 01:35:30 +00:00
<param name= "gtype" > a <see cref= "T:GLib.GType" /> </param>
2004-06-21 20:33:11 +00:00
<remarks > Chain to this constructor if you have manually registered a native <see cref= "T:GLib.GType" /> value for your subclass.</remarks>
2003-03-07 01:30:00 +00:00
</Docs>
2005-08-23 17:02:47 +00:00
<Attributes >
2005-05-23 20:41:51 +00:00
<Attribute >
<AttributeName > System.Obsolete(Message=null, IsError=False)</AttributeName>
</Attribute>
2005-08-23 17:02:47 +00:00
</Attributes>
</Member>
2004-06-01 18:05:26 +00:00
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "protected CanvasLine ();" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters />
<Docs >
<summary > To be added</summary>
2005-01-07 20:55:53 +00:00
<remarks > To be added</remarks>
2004-06-01 18:05:26 +00:00
</Docs>
</Member>
2003-02-12 02:14:42 +00:00
</Members>
2005-05-23 20:41:51 +00:00
</Type>