| property StatusFormat: string; |
| This property defines the format for the text printed to StatusLabel during an UpdateStatus call. There are several special formatting character pairs that can be used within the string: |
%c
|
current printing pass
|
%p
|
Current Page
|
%f
|
First Page
|
%l
|
Last Page
|
%d
|
Printer Device Name
|
%n
|
force a carriage return
|
%r
|
Printer Driver Name
|
%s
|
Total number of passes
|
%t
|
Printer Port
|
%0 through %9
|
Status Text Line (see StatusText)
|
%%
|
% character
|
| RvNDRWriter1.StatusFormat := 'Generating page '; |
| RvNDRWriter1.StatusFormat := 'Printing page (Pass of )'; |
| RvNDRWriter1->StatusFormat = "Generating page "; |
| RvNDRWriter1->StatusFormat = "Printing page (Pass of )";
|
|