com.esri.arcgis.display
Interface IDynamicDisplay

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
IDynamicDisplay2
All Known Implementing Classes:
DynamicDisplay, IDynamicDisplay2Proxy, IDynamicDisplayProxy

public interface IDynamicDisplay
extends java.io.Serializable

COM Interface 'IDynamicDisplay'. Generated 3/19/2015 1:20:53 PM from 'C:\ArcGIS\COM\esriDisplay.olb'

Description: 'Provides access to Dynamic Display.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IIDaf664ad1_130f_4fae_8277_1f0f78d459ac
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void drawLine(IPoint startPoint, IPoint endPoint)
          Draws a line between the specified points on the dynamic display.
 void drawMarker(IPoint point)
          Draws a marker at the specified point on the dynamic display.
 void drawMultipleLines(IPointCollection pointCollection)
          Draws specified lines on the dynamic display.
 void drawMultipleMarkers(IPointCollection pointCollection)
          Draws a marker at the specified points on the dynamic display.
 void drawPolygon(IPointCollection pointCollection)
          Draws specified polygon with fill and line on the dynamic display.
 void drawPolyline(IPointCollection pointCollection)
          Draws specified polyline on the dynamic display.
 void drawRectangle(IEnvelope envelope)
          Draws specified rectangle with fill and line on the dynamic display.
 void drawText(IPoint point, java.lang.String text)
          Draws text at the specified point on the dynamic display.
 IDynamicGlyphFactory getDynamicGlyphFactory()
          Retrieves the dynamic glyph factory.
 

Field Detail

IIDaf664ad1_130f_4fae_8277_1f0f78d459ac

static final int IIDaf664ad1_130f_4fae_8277_1f0f78d459ac
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

getDynamicGlyphFactory

IDynamicGlyphFactory getDynamicGlyphFactory()
                                            throws java.io.IOException,
                                                   AutomationException
Retrieves the dynamic glyph factory.

Returns:
A reference to a com.esri.arcgis.display.IDynamicGlyphFactory
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

drawMultipleMarkers

void drawMultipleMarkers(IPointCollection pointCollection)
                         throws java.io.IOException,
                                AutomationException
Draws a marker at the specified points on the dynamic display.

Parameters:
pointCollection - A reference to a com.esri.arcgis.geometry.IPointCollection (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

drawMarker

void drawMarker(IPoint point)
                throws java.io.IOException,
                       AutomationException
Draws a marker at the specified point on the dynamic display.

Parameters:
point - A reference to a com.esri.arcgis.geometry.IPoint (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

drawPolygon

void drawPolygon(IPointCollection pointCollection)
                 throws java.io.IOException,
                        AutomationException
Draws specified polygon with fill and line on the dynamic display.

Parameters:
pointCollection - A reference to a com.esri.arcgis.geometry.IPointCollection (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

drawMultipleLines

void drawMultipleLines(IPointCollection pointCollection)
                       throws java.io.IOException,
                              AutomationException
Draws specified lines on the dynamic display.

Parameters:
pointCollection - A reference to a com.esri.arcgis.geometry.IPointCollection (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

drawLine

void drawLine(IPoint startPoint,
              IPoint endPoint)
              throws java.io.IOException,
                     AutomationException
Draws a line between the specified points on the dynamic display.

Parameters:
startPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
endPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

drawPolyline

void drawPolyline(IPointCollection pointCollection)
                  throws java.io.IOException,
                         AutomationException
Draws specified polyline on the dynamic display.

Parameters:
pointCollection - A reference to a com.esri.arcgis.geometry.IPointCollection (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

drawRectangle

void drawRectangle(IEnvelope envelope)
                   throws java.io.IOException,
                          AutomationException
Draws specified rectangle with fill and line on the dynamic display.

Parameters:
envelope - A reference to a com.esri.arcgis.geometry.IEnvelope (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

drawText

void drawText(IPoint point,
              java.lang.String text)
              throws java.io.IOException,
                     AutomationException
Draws text at the specified point on the dynamic display.

Parameters:
point - A reference to a com.esri.arcgis.geometry.IPoint (in)
text - The text (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.