Spread Windows Forms 7.0 Product Documentation
SheetRectangle Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > PrintBackgroundEventArgs Class : SheetRectangle Property


Glossary Item Box

Gets or sets the rectangular area that represents the sheet.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property SheetRectangle As Rectangle
Visual Basic (Usage)Copy Code
Dim instance As PrintBackgroundEventArgs
Dim value As Rectangle
 
value = instance.SheetRectangle
C# 
public Rectangle SheetRectangle {get;}

Property Value

Rectangleobject containing the rectangle for the sheet

Example

This example loads a picture.
C#Copy Code
private void fpSpread1_PrintBackground(object sender, FarPoint.Win.Spread.PrintBackgroundEventArgs e) 
{ 
if(e.PageNumber == 1) 
{ 
FarPoint.Win.Picture pic = new FarPoint.Win.Picture(Image.FromFile("c:\\windows\\zapotec.bmp"),
FarPoint.Win.RenderStyle.Normal);
pic.AlignHorz = FarPoint.Win.HorizontalAlignment.Center;
pic.AlignVert = FarPoint.Win.VerticalAlignment.Center;
pic.Paint(e.Graphics, e.SheetRectangle);
}
}
Visual BasicCopy Code
Private Sub FpSpread1_PrintBackground(ByVal sender As Object, ByVal e As
FarPoint.Win.Spread.PrintBackgroundEventArgs) Handles FpSpread1.PrintBackground
If e.PageNumber = 1 Then
Dim pic As New FarPoint.Win.Picture(Image.FromFile("c:/windows/zapotec.bmp"),
FarPoint.Win.RenderStyle.Normal)
pic.AlignHorz = FarPoint.Win.HorizontalAlignment.Center
pic.AlignVert = FarPoint.Win.VerticalAlignment.Center
pic.Paint(e.Graphics, e.SheetRectangle)
End If
End Sub

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.