C# Class ARCed.Scintilla.PageInformation

Class for determining how and what to print for a header or footer.
Show file Open project: borisblizzard/arcreator Class Usage Examples

Public Properties

Property Type Description
DefaultFont System.Drawing.Font

Private Properties

Property Type Description

Public Methods

Method Description
Draw ( Graphics oGraphics, Rectangle oBounds, String strDocumentName, int iPageNumber ) : void

Draws the page information section in the specified rect

PageInformation ( ) : System

Default Constructor

PageInformation ( PageInformationBorder eBorder, InformationType eLeft, InformationType eCenter, InformationType eRight ) : System

Normal Use Constructor

PageInformation ( int iMargin, Font oFont, PageInformationBorder eBorder, InformationType eLeft, InformationType eCenter, InformationType eRight ) : System

Full Constructor

Method Details

Draw() public method

Draws the page information section in the specified rect
public Draw ( Graphics oGraphics, Rectangle oBounds, String strDocumentName, int iPageNumber ) : void
oGraphics System.Drawing.Graphics
oBounds System.Drawing.Rectangle
strDocumentName String
iPageNumber int
return void

PageInformation() public method

Default Constructor
public PageInformation ( ) : System
return System

PageInformation() public method

Normal Use Constructor
public PageInformation ( PageInformationBorder eBorder, InformationType eLeft, InformationType eCenter, InformationType eRight ) : System
eBorder PageInformationBorder Border style
eLeft InformationType What to print on the left side of the page
eCenter InformationType What to print in the center of the page
eRight InformationType What to print on the right side of the page
return System

PageInformation() public method

Full Constructor
public PageInformation ( int iMargin, Font oFont, PageInformationBorder eBorder, InformationType eLeft, InformationType eCenter, InformationType eRight ) : System
iMargin int Margin to use
oFont System.Drawing.Font Font to use
eBorder PageInformationBorder Border style
eLeft InformationType What to print on the left side of the page
eCenter InformationType What to print in the center of the page
eRight InformationType What to print on the right side of the page
return System

Property Details

DefaultFont public static property

Default font used for Page Information sections
public static Font,System.Drawing DefaultFont
return System.Drawing.Font