MESCIUS.ActiveReports.Core.Document Assembly / GrapeCity.ActiveReports.Document.Section Namespace / CanvasItem Class
Members Example

CanvasItem Class
Represents an abstract class of a canvas element.
Object Model
CanvasItem Class
Syntax
'Declaration
 
Public MustInherit Class CanvasItem 
 
Remarks
All canvas items coordinates are in inches.
Example
public class MyCanvasItem : CanvasItem
{
	public MyCanvasItem(CanvasType ctType) : base(ctType)
	{
	}
	public override CanvasItem Clone()
	{
		return new MyCanvasItem(Type);
	}
}
Inheritance Hierarchy

System.Object
   GrapeCity.ActiveReports.Document.Section.CanvasItem
      GrapeCity.ActiveReports.Document.Section.Align
      GrapeCity.ActiveReports.Document.Section.BackColor
      GrapeCity.ActiveReports.Document.Section.BackStyle
      GrapeCity.ActiveReports.Document.Section.BorderItem
      GrapeCity.ActiveReports.Document.Section.ClipRect
      GrapeCity.ActiveReports.Document.Section.ControlInfo
      GrapeCity.ActiveReports.Document.Section.ControlInfoEnd
      GrapeCity.ActiveReports.Document.Section.DrawText
      GrapeCity.ActiveReports.Document.Section.DrawText2
      GrapeCity.ActiveReports.Document.Section.DrawTextLink
      GrapeCity.ActiveReports.Document.Section.Ellipse
      GrapeCity.ActiveReports.Document.Section.EvaluationEnd
      GrapeCity.ActiveReports.Document.Section.EvaluationStart
      GrapeCity.ActiveReports.Document.Section.FillRect
      GrapeCity.ActiveReports.Document.Section.ForeColor
      GrapeCity.ActiveReports.Document.Section.InputFieldItem
      GrapeCity.ActiveReports.Document.Section.InputFieldTabIndexItem
      GrapeCity.ActiveReports.Document.Section.IntersectClip
      GrapeCity.ActiveReports.Document.Section.LineItem
      GrapeCity.ActiveReports.Document.Section.PenStyle
      GrapeCity.ActiveReports.Document.Section.PenWidth
      GrapeCity.ActiveReports.Document.Section.Rect
      GrapeCity.ActiveReports.Document.Section.ResetContext
      GrapeCity.ActiveReports.Document.Section.ResourcedCanvasItem
      GrapeCity.ActiveReports.Document.Section.RoundRect
      GrapeCity.ActiveReports.Document.Section.RoundRectEx
      GrapeCity.ActiveReports.Document.Section.RTL
      GrapeCity.ActiveReports.Document.Section.SectionInfo
      GrapeCity.ActiveReports.Document.Section.SectionInfoEnd
      GrapeCity.ActiveReports.Document.Section.SelectFont
      GrapeCity.ActiveReports.Document.Section.SetCharacterSpacing
      GrapeCity.ActiveReports.Document.Section.SetLineSpacing
      GrapeCity.ActiveReports.Document.Section.SetPadding
      GrapeCity.ActiveReports.Document.Section.SetScaleX
      GrapeCity.ActiveReports.Document.Section.SVG
      GrapeCity.ActiveReports.Document.Section.Table
      GrapeCity.ActiveReports.Document.Section.TabStopsItem
      GrapeCity.ActiveReports.Document.Section.TextAngle
      GrapeCity.ActiveReports.Document.Section.TextBoundsRange
      GrapeCity.ActiveReports.Document.Section.TextInfoItem
      GrapeCity.ActiveReports.Document.Section.TextOut
      GrapeCity.ActiveReports.Document.Section.TextRenderHintItem
      GrapeCity.ActiveReports.Document.Section.VerticalText
      GrapeCity.ActiveReports.Document.Section.WordWrap
      GrapeCity.ActiveReports.Document.Section.WrapModeItem

See Also