C# Class AODL.Document.Content.Draw.DrawAreaRectangle

DrawAreaRectangle represent draw area rectangle which could be used within a ImageMap.
Inheritance: DrawArea
Show file Open project: monsterlabs/HumanRightsTracker Class Usage Examples

Public Methods

Method Description
DrawAreaRectangle ( IDocument document, XmlNode node ) : System

Initializes a new instance of the DrawAreaRectangle class.

DrawAreaRectangle ( IDocument document, string x, string y, string width, string height ) : System

Initializes a new instance of the DrawAreaRectangle class.

DrawAreaRectangle ( IDocument document, string x, string y, string width, string height, EventListeners listeners ) : System

Initializes a new instance of the DrawAreaRectangle class.

Protected Methods

Method Description
NewXmlNode ( ) : void

Create a new XmlNode.

Method Details

DrawAreaRectangle() public method

Initializes a new instance of the DrawAreaRectangle class.
public DrawAreaRectangle ( IDocument document, XmlNode node ) : System
document IDocument The document.
node System.Xml.XmlNode The node.
return System

DrawAreaRectangle() public method

Initializes a new instance of the DrawAreaRectangle class.
public DrawAreaRectangle ( IDocument document, string x, string y, string width, string height ) : System
document IDocument The document.
x string The x.
y string The y.
width string The width.
height string The height.
return System

DrawAreaRectangle() public method

Initializes a new instance of the DrawAreaRectangle class.
public DrawAreaRectangle ( IDocument document, string x, string y, string width, string height, EventListeners listeners ) : System
document IDocument The document.
x string The x.
y string The y.
width string The width.
height string The height.
listeners AODL.Document.Content.OfficeEvents.EventListeners The listeners.
return System

NewXmlNode() protected method

Create a new XmlNode.
protected NewXmlNode ( ) : void
return void