de_config_window()
Allow windows to be configured through AEL. If a window has multiple instances, only the earliest instance will be configured. All windows created after using de_config_window() will not be configured. This function can be used in conjunction with: de_open_window(), de_close_window(), de_window_is_open(). Returns: none.
See also: api_set_current_window_by_seq_num(), de_create_window().
de_config_window(windowType, xLoc, yLoc, width, height);
where
windowType is the type of window, where:
- MAIN_WIN = Main window
- SCHEM_WIN = Schematic window
- LAYOUT_WIN = Layout window
xLoc, yLoc is the initial position for the window.
width is the width of window in user units.
height is the height of window in user units.
Example:
//Open the first window de_open_window(SCHEM_WIN); de_config_window(SCHEM_WIN, 150, 180, 300, 200, 1); de_close_window(); //Open another window -- Need to use de_config_window() again de_open_window(SCHEM_WIN); de_config_window(SCHEM_WIN, 150, 180, 300, 200, 1); de_close_window();
Where Used:
Schematic, Layout
Privacy
Statement
|
Terms of Use
|
Legal |
Contact Us
|
© Agilent 2000-2008 ![]()