-
- Tổng tiền thanh toán:

Part 19. Phần mềm SCADA Cimon Ultimate Access - Print
Part 19. Phần mềm SCADA Cimon Ultimate Access - Print
Các trang đồ họa được tạo trong CIMON-SCADA có thể được in ra. Người dùng có thể chỉ định tiêu đề hoặc chân trang cho trang để có thể nhận thấy nguồn của trang. Ngoài ra, người dùng có thể xem trước bản in của các trang đồ họa.
1 Print Setup
You can configure the organization of printout such as the orientation, header, footer, etc. Select [File] – [Page Setup] to bring up the [Print Setup] window as shown below
Item | Description |
Header | Assign a header to the printout. Select button to use the options. |
Footer | Assign a footer to the printout. Select button to use the options. |
Fit In Paper | Select this option to print the graphic page according to the printing paper. When the option is deselected, the graphic page is printed according to the graphic page magnification. |
Scale | Assign the number of pages to be printed. |
Orientation | Assign the orientation of the graphic page to be printed. (Landscape or Portrait) |
Option | Select the color option of the printout. |
Margin | Assign the margin of the printout. |
OK | Apply the settings to the print setup. |
Cancel | Cancels the print setup. |
Default | Initializes the all settings. Fit In Paper: Selected, Scale: X1, Y1, Orientation: Landscape, Option: Deselected, Margin: Left 25mm, Right 25mm, Top 20mm, Bottom 20mm |
(1) Header and Footer
The options for the header and footer will appear when you press button. You can arrange the options in the desired order
Item | Description |
Page Number | Displays the page number. Entered as “%P”. |
Date | Displays the printed date. Entered as “%D”. |
Time | Displays the printed time. Entered as “%T”. |
Center | Centers the header/footer. Entered as “%C”. |
Left | Aligns the header/footer to the left. Entered as “%L”. |
Right | Aligns the header/footer to the right. Entered as “%R”. |
File Name | Displays the printed page’s path and name. Entered as “%F” |
When you configure the header as “Project %P %D %T %F %C”, it will be printed as shown below.
(2) Scale
You can assign the value to X and Y to determine the number of printing papers to be used to express a single graphic page. For example, the default setting (X=1, Y=1) uses a sheet of paper to print the width and the height.
When the scale is assigned as X = 2, Y = 1, two sheets of paper is used to print the width and a sheet of paper for the height of the graphic page.
2 Preview
Select [File] – [Preview] or icon to configure and preview the result of print setup. In the [Print Setup] window, press [OK] to start the preview
Item | Description |
Name | Displays the list of available printers. |
Properties | Brings up the property window of the selected printer. |
Size | Select the size of the printing paper. |
Source | Select the source of the printing paper. |
Orientation | Assign the orientation of the printout. |
Help | Brings up the CIMON-SCADA Help. |
Network | Brings up the Windows Network browser. You can select a printer registered in the local network. |
OK | Applies the settings and the preview window will appear. |
Cancel | Cancels the preview setup and returns to the graphic page |
Item | Description |
Prints out the graphic page as shown in the preview. | |
Next/Prev Page |
If the graphic page is printed in several pages, you can move to the next or previous preview page. |
Level 4 | If the graphic page is printed in several sheets of papers, you can find the detailed display of a specific page. |
Level 5 | If the graphic page is printed in several sheets of papers, you can find the overall display of the pages. |
Zoom In | Click the [Zoom In] button or a point of a page to enlarge the preview. |
Zoom Out | Click the [Zoom Out] or a point of the enlarged page to reduce the preview. |
Close | Closes the preview window and returns to the graphic page |
3 Print
Prints out the current graphic page with the printer. Select [File] – [Print] or icon to bring up the [Print] window.
Item | Description |
Name | Displays the list of available printers. |
Properties | Brings up the property window of the selected printer. |
Print Range | Indicates the target pages to be printed. The options except ‘All’ are disabled. |
Copies | Assigns the number of copies. |
Help | Brings up the CIMON-SCADA Help. |
OK | Applies the configuration and prints out the graphic page. |
Cancel | Cancels the print and returns to the graphic page. |
4 Related Features
In this section, you can find functions and subroutines1 frequently used for the Print. Please refer to the table below for applicable functions/subroutines. For more detailed information of each function and subroutine, please refer to the next section.
Command | Description | ||
Subroutine | PrintPage | Prints out the specified page. | |
Subroutine | PrintPageEX | Prints out the page specified by the tag or string. | |
Subroutine | HardCopy | Prints out the runtime screen of CimonX. | |
Subroutine | HardCopyEX | Assigns the coordinate on the current display and prints out the screen as much as the value assigned to the width and the height |
4.1 Functions for Print
PrintPage | Prints out the specified page. | |
Subroutine | Command | PrintPage (“PageName”) |
Script | PrintPage “PageName” | |
Description | Prints out the page specified by PageName. | |
Example | Prints out the page named ‘Default’. PrintPage (“Default”) |
PrintPageEX | Prints out the page specified by the tag or string. | |
Subroutine | Command | PrintPageEX (“PageName”, “Tag Name List”) |
Script | PrintPageEX “PageName”, “Tag Name List” | |
Description | If a page, which is currently not opened, has a tag or string, you can print out the specified page. Tag Name List: Replaces the items assigned as $1, $2… $n with the assigned tags in the command. Distinguish the tags with comma (,). |
|
Example | Assigns the “Visible” tag to the “Default” page and prints out the page. PrintPageEX (“Default”, “Visible”) |
HardCopy | Prints out the runtime screen of CimonX. | |
Subroutine | Command | HardCopy () |
Script | HardCopy | |
Description | Prints out the runtime screen of CimonX. | |
Example | Prints out the runtime screen of CimonX. HardCopy() |
HardCopyEX | Assigns the coordinate on the current display and prints out the screen as much as the value assigned to the width and the height. | |
Subroutine | Command | HardCopyEX (X, Y, Width, Height) |
Script | HardCopyEX X, Y, Width, Height | |
Description | Assigns the coordinate on the current display (CimonX) and prints out the screen as much as the value assigned to the width and the height. | |
Example | Starting from the coordinate of (300, 300), prints out the screen in size of 300, 200 px. HardCopyEX (300, 300, 300, 200) |