|
|
|
|
|
PrintedSheet (Property) In french: FeuilleImprimée
Within a report, the PrintedSheet property is used to get and change the sheet of a Spreadsheet control to be printed. // Prints the sheet #3 PSHEET_Spreadsheet.PrintedSheet = 3
// Prints the "Yearly sales" sheet PSHEET_Spreadsheet.PrintedSheet = "Yearly sales"
Syntax
Finding out the sheet to print Hide the details
<Result> = <Spreadsheet control>.PrintedSheet
<Result>: Integer or character string - Number of the sheet to print.
- Name of the sheet to print.
<Spreadsheet control>: Control name Name of the Spreadsheet control to use.
Modifying the sheet to print Hide the details
<Spreadsheet control>.PrintedSheet = <Sheet to print>
<Spreadsheet control>: Control name Name of the Spreadsheet control to use. <Sheet to print>: Integer or character string Sheet to print identified: - by its number.
- by its name.
Remarks - The current sheet is printed by default.
- If the specified sheet does not exist, the current sheet is printed.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|