Spread for ASP.NET 7.0 Product Documentation
Header Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > PrintEventArgs Class : Header Property


Glossary Item Box

Gets whether to print the sheet header.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Header As Boolean
Visual Basic (Usage)Copy Code
Dim instance As PrintEventArgs
Dim value As Boolean
 
value = instance.Header
C# 
public bool Header {get;}

Property Value

true for header; false for footer

Example

This example prints a header and a footer.
C#Copy Code
private void FpSpread1_PrintSheet(object sender, FarPoint.Web.Spread.PrintEventArgs e)
        { 
            if (e.Header == true)
            {
                e.Content = "Header";
            }
            if (e.Header == false)
            {
                e.Content = "Footer";
            }
        }
Visual BasicCopy Code
Private Sub FpSpread1_PrintSheet(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.PrintEventArgs) Handles FpSpread1.PrintSheet
        If e.Header = True Then
            e.Content = "Header"
        End If 
        If e.Header = False Then
            e.Content = "Footer"
        End If
    End Sub

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

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