Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / PrintPreviewShowingEventArgs Class / Cancel Property
Example


In This Topic
    Cancel Property (PrintPreviewShowingEventArgs)
    In This Topic
    Gets or sets whether to cancel the print preview.
    Syntax
    'Declaration
     
    Public Property Cancel As Boolean
    'Usage
     
    Dim instance As PrintPreviewShowingEventArgs
    Dim value As Boolean
     
    instance.Cancel = value
     
    value = instance.Cancel
    public bool Cancel {get; set;}

    Property Value

    Boolean: true to cancel the print preview; false otherwise
    Example
    This example cancels the preview.
    private void fpSpread1_PrintPreviewShowing(object sender, FarPoint.Win.Spread.PrintPreviewShowingEventArgs e) 
    { 
         if (fpSpread1.ActiveSheet.PrintInfo.Preview == true) 
         { 
              e.Cancel = true; 
         } 
    }
    Private Sub FpSpread1_PrintPreviewShowing(ByVal sender As Object, ByVal e As
    FarPoint.Win.Spread.PrintPreviewShowingEventArgs) Handles FpSpread1.PrintPreviewShowing 
         If FpSpread1.ActiveSheet.PrintInfo.Preview = True Then 
              e.Cancel = True 
         End If 
    End Sub
    See Also