C# Class NewTOAPIA.Drawing.GPath

Inheritance: IBracket
Show file Open project: Wiladams/NewTOAPIA Class Usage Examples

Public Methods

Method Description
AddVertex ( System.Point aPoint, PathCommand aCommand, bool closeFigure ) : void
AddVertex ( Point3D aPoint, GDIPathCommand aCommand, bool closeFigure ) : void
Begin ( ) : void

Begin a Path. If the path is already frozen, then this will have no effect.

BezierTo ( int x, int y, bool closeFigure ) : void
End ( ) : void

End the path.

GPath ( ) : System
GPath ( System.Guid uniqueID ) : System
GPath ( System.Point vertices, byte commands ) : System
GPath ( Point3D vertices, byte commands ) : System
LineTo ( double x, double y, bool closeFigure ) : void
LineTo ( int x, int y, bool closeFigure ) : void
MoveTo ( double x, double y, bool closeFigure ) : void
MoveTo ( int x, int y, bool closeFigure ) : void

Protected Methods

Method Description
OnBegin ( ) : void
OnEnd ( ) : void
SetPath ( System.Point vertices, byte commands ) : void
SetPath ( Point3D vertices, byte commands ) : void

Method Details

AddVertex() public method

public AddVertex ( System.Point aPoint, PathCommand aCommand, bool closeFigure ) : void
aPoint System.Point
aCommand PathCommand
closeFigure bool
return void

AddVertex() public method

public AddVertex ( Point3D aPoint, GDIPathCommand aCommand, bool closeFigure ) : void
aPoint Point3D
aCommand GDIPathCommand
closeFigure bool
return void

Begin() public method

Begin a Path. If the path is already frozen, then this will have no effect.
public Begin ( ) : void
return void

BezierTo() public method

public BezierTo ( int x, int y, bool closeFigure ) : void
x int
y int
closeFigure bool
return void

End() public method

End the path.
public End ( ) : void
return void

GPath() public method

public GPath ( ) : System
return System

GPath() public method

public GPath ( System.Guid uniqueID ) : System
uniqueID System.Guid
return System

GPath() public method

public GPath ( System.Point vertices, byte commands ) : System
vertices System.Point
commands byte
return System

GPath() public method

public GPath ( Point3D vertices, byte commands ) : System
vertices Point3D
commands byte
return System

LineTo() public method

public LineTo ( double x, double y, bool closeFigure ) : void
x double
y double
closeFigure bool
return void

LineTo() public method

public LineTo ( int x, int y, bool closeFigure ) : void
x int
y int
closeFigure bool
return void

MoveTo() public method

public MoveTo ( double x, double y, bool closeFigure ) : void
x double
y double
closeFigure bool
return void

MoveTo() public method

public MoveTo ( int x, int y, bool closeFigure ) : void
x int
y int
closeFigure bool
return void

OnBegin() protected method

protected OnBegin ( ) : void
return void

OnEnd() protected method

protected OnEnd ( ) : void
return void

SetPath() protected method

protected SetPath ( System.Point vertices, byte commands ) : void
vertices System.Point
commands byte
return void

SetPath() protected method

protected SetPath ( Point3D vertices, byte commands ) : void
vertices Point3D
commands byte
return void