|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IPageLayoutControl
Provides access to members that control the PageLayoutControl.
The IPageLayoutControl interface is a starting point for any tasks related to the PageLayoutControl, such as setting general appearance, setting page and display properties, adding and finding elements, loading map documents, and printing.
Method Summary | |
---|---|
void |
aboutBox()
Displays a dialog of information about the PageLayoutControl. |
void |
addElement(IElement pElement,
Object geometry,
Object symbology,
Object name,
int zOrder)
Adds the supplied element to the PageLayout, with optional geometry, symbolization, name and Z order. |
void |
centerAt(IPoint centerPoint)
Moves the center of the PageLayoutControl to the specified location. |
boolean |
checkMxFile(String fileName)
Checks the specified filename to see if it is a map document that can be loaded into the PageLayoutControl. |
boolean |
esri_isEnabled()
Indicates whether the PageLayoutControl can respond to user generated events. |
void |
esri_setEnabled(boolean pbool)
Indicates whether the PageLayoutControl can respond to user generated events. |
IElement |
findElementByName(String name,
int occurence)
Find the first element with the supplied name, supply an occurrence parameter to find the second, third and so on. |
void |
fromPagePoint(IPoint pt,
int[] x,
int[] y)
Converts a point on the page (in page units) to device co-ordinates (typically pixels). |
IActiveView |
getActiveView()
The active view of the PageLayout contained by the PageLayoutControl. |
int |
getAppearance()
The appearance of the PageLayoutControl. |
int |
getBackColor()
Background color of the PageLayoutControl. |
int |
getBorderStyle()
The border style of the PageLayoutControl. |
ITool |
getCurrentTool()
Current active tool for the PageLayoutControl. |
IEnvelope |
getExtent()
Current extent of the PageLayout in page units. |
IEnvelope |
getFullExtent()
Rectangular shape that encloses the PageLayout. |
IGraphicsContainer |
getGraphicsContainer()
The graphics container of the PageLayout object contained by the PageLayoutControl. |
int |
getHWnd()
Handle to the window associated with the PageLayoutControl. |
Picture |
getMouseIcon()
Custom mouse icon used if MousePointer is 99. |
int |
getMousePointer()
The mouse pointer displayed over the PageLayoutControl. |
IPage |
getPage()
The Page associated with the PageLayout contained by the PageLayoutControl. |
IPageLayout |
getPageLayout()
The PageLayout contained by the PageLayoutControl. |
IPrinter |
getPrinter()
The printer object used by the PageLayoutControl for printing. |
short |
getPrinterPageCount(double overlap)
The number of printer pages the PageLayout will cover. |
ITrackCancel |
getTrackCancel()
The object used by the PageLayoutControl to check if drawing has been aborted. |
boolean |
isOleDropEnabled()
Indicates if the PageLayoutControl will fire events when data is dragged over the control's window. |
void |
loadMxFile(String fileName,
Object password)
Loads the specified map document into the PageLayout contained by the PageLayoutControl. |
IElement |
locateFrontElement(double pageX,
double pageY,
double tolerance)
Locates an element at the given page co-ordinates. |
void |
pan()
Tracks the mouse while panning the PageLayoutControl. |
void |
printPageLayout(short startPage,
short endPage,
double overlap)
Sends the specified range of pages on the printer. |
void |
refresh(int phase,
Object layerOrElement,
Object envelope)
Redraws the PageLayout, optionally just redraw specified phases or envelope. |
void |
setAppearance(int pappearance)
The appearance of the PageLayoutControl. |
void |
setBackColor(int pclr)
Background color of the PageLayoutControl. |
void |
setBorderStyle(int pstyle)
The border style of the PageLayoutControl. |
void |
setCurrentToolByRef(ITool pTool)
Current active tool for the PageLayoutControl. |
void |
setExtent(IEnvelope extent)
Current extent of the PageLayout in page units. |
void |
setFullExtent(IEnvelope fullExtent)
Rectangular shape that encloses the PageLayout. |
void |
setMouseIconByRef(Picture ppMouseIcon)
Custom mouse icon used if MousePointer is 99. |
void |
setMousePointer(int ppointer)
The mouse pointer displayed over the PageLayoutControl. |
void |
setOleDropEnabled(boolean value)
Indicates if the PageLayoutControl will fire events when data is dragged over the control's window. |
void |
setPageLayoutByRef(IPageLayout pPageLayout)
The PageLayout contained by the PageLayoutControl. |
void |
setPrinterByRef(IPrinter ppPrinter)
The printer object used by the PageLayoutControl for printing. |
void |
setTrackCancelByRef(ITrackCancel ppTrackCancel)
The object used by the PageLayoutControl to check if drawing has been aborted. |
IPoint |
toPagePoint(int x,
int y)
Converts device co-ordinates (typically pixels) to a point on the page (in page units). |
IEnvelope |
trackRectangle()
Rubber-bands a rectangle on the PageLayoutControl. |
void |
zoomToWholePage()
Changes the extent of the PageLayout to show a whole page. |
Method Detail |
---|
void setBackColor(int pclr) throws IOException, AutomationException
pclr
- The pclr (A COM typedef) (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.int getBackColor() throws IOException, AutomationException
Returns or sets the Background Color of the PageLayoutControl. The Background color is used to draw the area of the Control outside the Page itself. Internally the OLE_Color is stored as a long integer where the value may be calculated for any RGB combination as follows:
OLE_Color = (Red) + (Green * 256) + (Blue * 256 * 256)
Where Red, Green and Blue are Long Integers within the range 0 - 255.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setBorderStyle(int pstyle) throws IOException, AutomationException
pstyle
- A com.esri.arcgis.controls.esriControlsBorderStyle constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.int getBorderStyle() throws IOException, AutomationException
Returns or sets the border style of a PageLayoutControl. By default a border is drawn.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void esri_setEnabled(boolean pbool) throws IOException, AutomationException
pbool
- The pbool (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.boolean esri_isEnabled() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setAppearance(int pappearance) throws IOException, AutomationException
pappearance
- A com.esri.arcgis.controls.esriControlsAppearance constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.int getAppearance() throws IOException, AutomationException
Returns or sets the paint style of a PageLayoutControl to either Flat or 3D. By default the appearance is flat.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setMousePointer(int ppointer) throws IOException, AutomationException
ppointer
- A com.esri.arcgis.controls.esriControlsMousePointer constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.int getMousePointer() throws IOException, AutomationException
Use this property when you want to indicate changes in functionality as the mouse pointer passes over the PageLayoutControl. The esriPointerArrowHourglass setting (11) is useful for indicating that the user should wait for a process or operation to finish.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.getMouseIcon()
void setMouseIconByRef(Picture ppMouseIcon) throws IOException, AutomationException
The MouseIcon property provides a custom icon that is used when the IPageLayoutControl::MousePointer property is set to 99.
You can use the MouseIcon property to load either cursor (.cur) or icon (.ico) files. The MouseIcon property provides your program with easy access to custom cursors of any size, with any desired hot spot location. This property cannot be used to load animated cursor (.ani) files.
PageLayoutControl1.MouseIcon = LoadPicture("c:\winnt\cursors\mycursor.cur")
ppMouseIcon
- A reference to a com.esri.arcgis.support.ms.stdole.Picture (A com.esri.arcgis.support.ms.stdole.Picture COM typedef) (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.Picture getMouseIcon() throws IOException, AutomationException
The MouseIcon property provides a custom icon that is used when the MousePointer property is set to esriPointerArrowHourglass (99).
In most development evironments the control's property pages can be used to load either a cursor (.cur) or icon (.ico) file. A cursor contains a custom 'hotspot' location and can be any size. The 'hotspot' location for an icon file defaults to the center of the icon. This property cannot be used to load animated cursor (.ani) files.
To programatically create an object implementing IPictureDisp there is the win32 function OleLoadPicture or helper methods depending on the development environment.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.getMousePointer()
int getHWnd() throws IOException, AutomationException
The operating environment identifies each window, form and control in an application by assigning it a handle, or hWnd. Many ArcObjects methods and Windows API calls require the hWnd as an argument.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void aboutBox() throws IOException, AutomationException
The AboutBox method causes a modal dialog box to display on top of the PageLayoutControl, containing information about the version and creation date of the PageLayoutControl as well as listing relevant legal and copyright information from ESRI.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.ITool getCurrentTool() throws IOException, AutomationException
The CurrentTool is the tool used to interact will the PageLayoutControl's display. Always check if a tool is enabled before setting it to the CurrentTool property, otherwise a user will be able to use a tool that is actually disabled.
When the CurrentTool is set the following events occur:
Within an ITool implementation it is recommended that the ITool::Deactivate event returns true. This allows a 'new' CurrentTool to be set, and allows the release of the CurrentTool when an application is shutting down.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setCurrentToolByRef(ITool pTool) throws IOException, AutomationException
pTool
- A reference to a com.esri.arcgis.systemUI.ITool (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayout getPageLayout() throws IOException, AutomationException
This is the PageLayout CoClass contained within the PageLayoutControl. If the PageLayout is replaced the IPageLayoutControlEvents::OnPageLayoutReplaced event is triggered.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.getPrinterPageCount(double)
,
IPageLayoutControl.printPageLayout(short, short, double)
,
IPageLayoutControl.getPrinter()
,
IPageLayoutControl.getPage()
void setPageLayoutByRef(IPageLayout pPageLayout) throws IOException, AutomationException
pPageLayout
- A reference to a com.esri.arcgis.carto.IPageLayout (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IActiveView getActiveView() throws IOException, AutomationException
This is the ActiveView on the PageLayout CoClass contained within the PageLayoutControl.
When the PageLayoutControl is added to a container the PageLayout's element selection, IActiveView::Selection, is Nothing. This causes the esriViewGraphicSelection draw phase to ignore any selected graphics. To resolve this, set the IActiveView::Selection property to the IViewManager::ElementSelection property. This will result in the MapFrame element becoming selected.
The IActiveView::ShowRuler property will not display any rulers on the PageLayout because the PageLayoutControl does not itself manage rulers. An application must draw its own rulers.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IEnvelope getExtent() throws IOException, AutomationException
Returns or sets a new envelope which is represents the visible extent of the PageLayout. Setting the Extent property will automatically cause the PageLayoutControl to refresh its display.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setExtent(IEnvelope extent) throws IOException, AutomationException
extent
- A reference to a com.esri.arcgis.geometry.IEnvelope (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IEnvelope getFullExtent() throws IOException, AutomationException
Returns or sets an envelope object which by default is the PageLayout's page size expanded by a factor of 1.9 and which is automatically set whenever the page size changes. Setting the FullExtent triggers the IPageLayoutControlEvents::OnFullExtentUpated event.
The FullExtent property is a shortcut to IActiveView::FullExtent which is in turn a shortcut to IDisplayTransformation::Bounds. Setting the FullExtent property will not affect the Extent property.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setFullExtent(IEnvelope fullExtent) throws IOException, AutomationException
fullExtent
- A reference to a com.esri.arcgis.geometry.IEnvelope (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPage getPage() throws IOException, AutomationException
The Page property is based upon the IPageLayout::Page property. Use the Page to manage the on screen visual representation of the printer page such as page size and orientation.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.getPrinterPageCount(double)
,
IPageLayoutControl.printPageLayout(short, short, double)
,
IPageLayoutControl.getPageLayout()
,
IPageLayoutControl.getPrinter()
IGraphicsContainer getGraphicsContainer() throws IOException, AutomationException
This property is a shortcut to IActiveView::GraphicsContainer.
This property will always return a reference to the PageLayout's GraphicsContainer rather than to any GraphicsContainer associated with a Map.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void printPageLayout(short startPage, short endPage, double overlap) throws IOException, AutomationException
PrintPageLayout sends the PageLayout to the Printer. If the Page does not fit the IPrinter::Paper, the value of IPage::PageToPrinterMapping will determine whether the Page is cropped, scaled or tiled across the Printer's paper.
Before using the PrintPageLayout property, ensure that the orientation of IPrinter::Paper is the same orientation as the Page.
startPage
- The startPage (in, optional, pass 1 if not required)endPage
- The endPage (in, optional, pass 0 if not required)overlap
- The overlap (in, optional, pass 0 if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.getPrinterPageCount(double)
,
IPageLayoutControl.getPageLayout()
,
IPageLayoutControl.getPrinter()
,
IPageLayoutControl.getPage()
IPrinter getPrinter() throws IOException, AutomationException
Unless the Printer property has been set to a specific printer, the property will return the default system printer. Before issuing a print always check that the PageLayoutControl has a printer.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.getPrinterPageCount(double)
,
IPageLayoutControl.printPageLayout(short, short, double)
,
IPageLayoutControl.getPageLayout()
,
IPageLayoutControl.getPage()
void setPrinterByRef(IPrinter ppPrinter) throws IOException, AutomationException
ppPrinter
- A reference to a com.esri.arcgis.output.IPrinter (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.ITrackCancel getTrackCancel() throws IOException, AutomationException
Use the TrackCancel object to enable users to stop printing, exporting or drawing processes by using the escape or spacebar keys.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setTrackCancelByRef(ITrackCancel ppTrackCancel) throws IOException, AutomationException
ppTrackCancel
- A reference to a com.esri.arcgis.system.ITrackCancel (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void pan() throws IOException, AutomationException
Pan preserves the scale of the PageLayout, but changes the Extent property.
Use the Pan method within the IPageLayoutControlEvents::OnMouseDown event to allow the user to pan contents of the PageLayoutControl. The IPageLayoutControlEvents::OnMouseMove event will be triggered during the pan, but no IPageLayoutControlEvents::OnMouseUp event will occur. The ESC key on the keyboard can be used during panning to cancel the Pan.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void centerAt(IPoint centerPoint) throws IOException, AutomationException
The CenterAt method positions the supplied point in the center of the PageLayoutControl. The Extent of the PageLayoutControl will change, but the scale will remain the same.
centerPoint
- A reference to a com.esri.arcgis.geometry.IPoint (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IEnvelope trackRectangle() throws IOException, AutomationException
Use the TrackRectangle method within the IPageLayoutControlEvents::OnMouseDown event to rubberband a user defined rectangle. The IPageLayoutControlEvents::OnMouseMove event will be triggered during the track, but no IPageLayoutControlEvents::OnMouseUp event will occur. The ESC key on the keyboard can be used during the track to cancel the TrackRectangle.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void addElement(IElement pElement, Object geometry, Object symbology, Object name, int zOrder) throws IOException, AutomationException
Adds an element to the GraphicsContainer.
geometry an object that implements IGeometry
symbology an object that implements ISymbol or
IColor
(symbology is applied to the element using the IPropertySupport
interface)
name a string
pElement
- A reference to a com.esri.arcgis.carto.IElement (in)geometry
- A Variant (in, optional, pass null if not required)symbology
- A Variant (in, optional, pass null if not required)name
- A Variant (in, optional, pass null if not required)zOrder
- The zOrder (in, optional, pass 0 if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.locateFrontElement(double, double, double)
,
IPageLayoutControl.findElementByName(String, int)
IElement locateFrontElement(double pageX, double pageY, double tolerance) throws IOException, AutomationException
LocateFrontElement is typically used within the IPageLayoutControlEvents::OnMouseDown event to retrieve an element at the given page coordinates. If more than one element exists at the given page coordinates, the element located at the front is returned.
pageX
- The pageX (in)pageY
- The pageY (in)tolerance
- The tolerance (in, optional, pass 0 if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.findElementByName(String, int)
,
IPageLayoutControl.addElement(com.esri.arcgis.carto.IElement, java.lang.Object, java.lang.Object, java.lang.Object, int)
IElement findElementByName(String name, int occurence) throws IOException, AutomationException
If an empty string is supplied then any elements with no name are found. By default new elements are created with no name. To give an element a name so it can easily be found use one of the following methods: either supply a name string when using the AddElement method, or implement the IElementProperties interface.
name
- The name (in)occurence
- The occurence (in, optional, pass 1 if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.locateFrontElement(double, double, double)
,
IPageLayoutControl.addElement(com.esri.arcgis.carto.IElement, java.lang.Object, java.lang.Object, java.lang.Object, int)
void loadMxFile(String fileName, Object password) throws IOException, AutomationException
Loads an map document into the PageLayoutControl. The map document can be an ArcMap document, an ArcMap template or an ArcReader document. Use the CheckMxFile method to determine if the specified map document is a valid map document.
When LoadMXfile is used the user may be prompted for a password; refer to the tables below to determine when this may occur. Additionally, password prompts may be given if accessing MapDocuments using either the PageLayoutControl's PropertyPage, ArcMap or ArcReader; the tables also show in what circumstances this will occur.
Loading Map Documents (*.mxd, *.mxt, *.pmf) which reference IMS Services (with and without security)
Application | No Secure Services MXD/ MXT/ PMF files | Secure Servcies MXD/ MXT/ PMF files | Secure Servcies (password cached) MXD/ MXT files | Secure Servcies (password cached) PMF files |
---|---|---|---|---|
PageLayoutControl (programmatically) | No Prompt | Prompt | No Prompt | Prompt |
PageLayoutControl (property pages) | No Prompt | Prompt | No Prompt | Prompt |
ArcMap | No Prompt | Prompt | No Prompt | Prompt |
ArcReader (PMF files only) | No Prompt | Prompt | N/A | No Prompt |
* The Connection to the Internet server must have the Save User/ Password setting enabled. This can be set, for example, when using Add Internet Server in the Add Layers Dialog. Additionally, in the case of PMF files the ArcPublisher Cache password in PMF file setting must be enabled.
Loading Published Map Files (*.pmf) (with and without password protection)
Application | PMF with No Password | PMF with Password |
---|---|---|
PageLayoutControl (programmatically) | No Prompt | Supply in Code |
PageLayoutControl (property pages) | No Prompt | Prompt |
ArcMap | No Prompt | Prompt |
ArcReader | No Prompt | Prompt |
fileName
- The fileName (in)password
- A Variant (in, optional, pass null if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.checkMxFile(String)
boolean isOleDropEnabled() throws IOException, AutomationException
Indicates if the PageLayoutControl will accept data dragged from another application and fire the IPageLayoutControlEvents::OnOleDrop event. By default the OleDropEnabled property is set to false.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setOleDropEnabled(boolean value) throws IOException, AutomationException
value
- The value (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.boolean checkMxFile(String fileName) throws IOException, AutomationException
Determines whether the specified map document (*.mxd, *.mxt, *.pmf) is a valid map document and can be loaded into the PageLayoutControl. The method verifies the file exists and verifies the file internals conform to an expected storage format. The method does not read and validate the entire contents of the file; use the LoadMxFile to do this.
fileName
- The fileName (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.loadMxFile(String, java.lang.Object)
void zoomToWholePage() throws IOException, AutomationException
The method is based upon the IPageLayout::ZoomToWhole method.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.short getPrinterPageCount(double overlap) throws IOException, AutomationException
overlap
- The overlap (in, optional, pass 0 if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void refresh(int phase, Object layerOrElement, Object envelope) throws IOException, AutomationException
Use the Refresh method to redraw the display. If the Refresh method is used and no arguments are supplied the refresh is based upon the IActiveView::Refresh method.
In all other cases the refresh is based upon the IActiveView::PartialRefresh method. The Refresh method supports the esriViewDrawPhases given below:
0 :esriViewNone
1 :esriViewBackground
2 :esriViewGeography
4 :esriViewGeoSelection
8 :esriViewGraphics
16 :esriViewSelection
32 :esriViewForeground
If the Refresh method is used and no phase argument is supplied, but one of the other arguments is supplied then all phases will be refreshed and the phase value will be 65535. Always supply a phase whenever possible to increase efficiency.
Use the layerOrElement argument to refresh a particular layer or graphic element. Use the envelope argument to refresh only a particular region. For example, if a new graphic is added you may only want to refresh the area surrounding the graphic.
Use the TrackCancel object to set whether users can stop drawing processes by using the escape or spacebar keys or by clicking the mouse.
phase
- A com.esri.arcgis.carto.esriViewDrawPhase constant (in, optional, pass 65535 if not required)layerOrElement
- A Variant (in, optional, pass null if not required)envelope
- A Variant (in, optional, pass null if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void fromPagePoint(IPoint pt, int[] x, int[] y) throws IOException, AutomationException
The FromPagePoint method takes an input point in IPage::Units, and populates two variables with the equivalent control coordinates in pixels.
pt
- A reference to a com.esri.arcgis.geometry.IPoint (in)x
- The x (in/out: use single element array)y
- The y (in/out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.toPagePoint(int, int)
IPoint toPagePoint(int x, int y) throws IOException, AutomationException
ToPagePoint converts a (X,Y) location in pixels to IPage::Units.
x
- The x (in)y
- The y (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPageLayoutControl.fromPagePoint(com.esri.arcgis.geometry.IPoint, int[], int[])
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |