interface Infragistics.Documents.Reports.Report.Shapes.IPath:

   def public property Pen as Infragistics.Documents.Reports.Graphics.Pen
      get.
      set.

   def public property Brush as Infragistics.Documents.Reports.Graphics.Brush
      get.
      set.

   method public void MoveTo(input x as decimal, input y as decimal).

   method public void LineTo(input x as decimal, input y as decimal).

   method public void CurveTo(input x1 as decimal, input y1 as decimal, input x2 as decimal, input y2 as decimal, input x3 as decimal, input y3 as decimal).

   method public void ClosePath().

end interface.
