Spread Windows Forms 6.0 Product Documentation
AbortMessage Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > PrintInfo Class : AbortMessage Property


Glossary Item Box

Gets or sets the message to display for the abort dialog.

Syntax

Visual Basic (Declaration) 
Public Property AbortMessage As String
Visual Basic (Usage)Copy Code
Dim instance As PrintInfo
Dim value As String
 
instance.AbortMessage = value
 
value = instance.AbortMessage
C# 
public string AbortMessage {get; set;}

Property Value

String containing the message to display

Remarks

This property specifies the text to display in an abort dialog box that lets the user cancel printing. The abort dialog box appears if the user chooses the Cancel button in a print dialog while printing. When the abort dialog box appears, the PrintAbort event occurs.

If you do not provide a message, the Spread component does not display the abort dialog box.

You can supply your own message box instead of the built-in message box using the PrintMessageBox event.

Example

This example shows how to define the settings for displaying dialogs for the end users.
C#Copy Code
// Define the printer settings
FarPoint.Win.Spread.PrintInfo printset = new FarPoint.Win.Spread.PrintInfo();
printset.ShowPrintDialog = true;
printset.AbortMessage = "Do you want to cancel the printing?";
printset.Preview = true;

// Assign the printer settings to the sheet and print it
fpSpread1.Sheets[0].PrintInfo = printset;
fpSpread1.PrintSheet(0);
Visual BasicCopy Code
' Define the printer settings
Dim printset As New FarPoint.Win.Spread.PrintInfo()
printset.ShowPrintDialog = True
printset.AbortMessage = "Do you want to cancel the printing?"
printset.Preview = True

' Assign the printer settings to the sheet and print it
FpSpread1.Sheets(0).PrintInfo = printset
FpSpread1.PrintSheet(0)

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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