Spread for ASP.NET 9.0 Product Documentation
ShowPDFButton Property
Example 


Gets or sets whether to display the print PDF button.
Syntax
'Declaration
 
Public Property ShowPDFButton As Boolean
'Usage
 
Dim instance As CommandBarInfo
Dim value As Boolean
 
instance.ShowPDFButton = value
 
value = instance.ShowPDFButton
public bool ShowPDFButton {get; set;}
Example
This example sets the ShowPDFButton property.
fpSpread1.Commandbar.ShowPDFButton = true;

protected void FpSpread1_PrintPDF(object sender, FarPoint.Web.Spread.PrintPDFEventArgs e)
{
e.PdfFileName = "NewPdfFileName.pdf";
}
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        FpSpread1.CommandBar.ShowPDFButton = True
    End Sub

    Protected Sub FpSpread1_PrintPDF(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.PrintPDFEventArgs) Handles FpSpread1.PrintPDF
        e.PdfFileName = "NewPdfFileName.pdf"
    End Sub
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

CommandBarInfo Class
CommandBarInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.