|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.controls.ARFeature
public class ARFeature
ARFeature object.
An ARFeature object is a spatial entity modelled as an object with properties and behavior. All ARFeature objects within an ARLayer share the same set of attribute schema; that is they have the same set of fields. The IARFeature interface provides properties and methods for accessing the feature's field and field values, and identifying the feature on the display.
Constructor Summary | |
---|---|
ARFeature(Object obj)
Construct a ARFeature using a reference to such an object returned from ArcGIS Engine or Server. |
Method Summary | |
---|---|
void |
centerAt()
Centers the feature on the map display. |
boolean |
equals(Object o)
Compare this object with another |
void |
flash()
Flashes the feature on the display. |
void |
flicker()
Flickers the feature on the display. |
Object |
getCustomProperty()
A property to associate data with an object. |
String |
getFieldAliasName(int index)
The alias name of the field. |
int |
getFieldCount()
The number of fields in the field collection. |
String |
getFieldName(int index)
The name of the field. |
int |
getFieldType(int index)
The type of field. |
Object |
getInternalObject()
The internal ArcObjects IFeature object. |
Object |
getValue(Object index)
The value of the field. |
String |
getValueAsString(Object index)
A property to access the value of the specified field as a string. |
int |
hashCode()
the hashcode for this object |
void |
highlight(boolean bHighlight,
int color)
Highlights the feature on the display. |
boolean |
isFieldAccessible(Object index)
A property that checks if the specified field is accessible. |
void |
setCustomProperty(Object pVal)
A property to associate data with an object. |
void |
zoomTo()
Zooms the map to display the feature. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef |
---|
getJintegraDispatch, release |
Constructor Detail |
---|
public ARFeature(Object obj) throws IOException
obj
to ARFeature
. *
ARFeature o = (ARFeature)obj; // will not work
ARFeature o = new ARFeature(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server
IOException
- if there are interop problems
ARFeature theARFeature = (ARFeature) obj;
Method Detail |
---|
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public Object getValue(Object index) throws IOException, AutomationException
getValue
in interface IARFeature
index
- A Variant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getFieldCount() throws IOException, AutomationException
The FieldCount property returns the number of fields in the ARFeature's field collection. There is always at least one field within the field collection.
getFieldCount
in interface IARFeature
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getFieldName(int index) throws IOException, AutomationException
getFieldName
in interface IARFeature
index
- The index (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getFieldAliasName(int index) throws IOException, AutomationException
getFieldAliasName
in interface IARFeature
index
- The index (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getFieldType(int index) throws IOException, AutomationException
getFieldType
in interface IARFeature
index
- The index (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void zoomTo() throws IOException, AutomationException
Zooms to the ARFeature to make it visible on the display. This may change the IARMap::MapScale. By default the screen is automatically refreshed.
zoomTo
in interface IARFeature
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void centerAt() throws IOException, AutomationException
Centers the ARFeature on the display to make it visible. The extent of the ARMap will change, but the IARMap::MapScale will remain the same. By default the screen is automatically refreshed.
centerAt
in interface IARFeature
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void flash() throws IOException, AutomationException
Flashes the ARFeature once on the display. Before using the Flash method use the ZoomTo or CenterAt method to ensure that the ARFeature is visible in the ARMap display area to the user.
flash
in interface IARFeature
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void flicker() throws IOException, AutomationException
Flickers the ARFeature on the display. This is like flashing the feature four times in quick succession. Before using the Flicker method use the ZoomTo or CenterAt method to ensure that the ARFeature is visible in the ARMap display area to the user.
flicker
in interface IARFeature
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public Object getInternalObject() throws IOException, AutomationException
Use the InternalObject property to access the underlying IFeature object. This property is always inaccessible.
Getting the InternalObject property will return an error if no license is available and if the currently loaded document was not published with permission to access InternalObjects. Use the IARControl::HasDocumentPermission method to determine this.
getInternalObject
in interface IARFeature
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public Object getCustomProperty() throws IOException, AutomationException
Use the CustomProperty to associate any useful data with the ARFeature. This is similar to a 'Tag' property, and can be use to store strings, numbers and objects.
getCustomProperty
in interface IARFeature
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setCustomProperty(Object pVal) throws IOException, AutomationException
setCustomProperty
in interface IARFeature
pVal
- A Variant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void highlight(boolean bHighlight, int color) throws IOException, AutomationException
Highlights the ARFeature on the display. By deafult the screen is automatically refreshed.
This method acts on an instance of an object. In order to toggle the highlighting of a feature, one must work with the same instance of the object.
The Highlight method triggers the following events:
OnBeforeScreenDraw
OnAfterScreenDraw
highlight
in interface IARFeature
bHighlight
- The bHighlight (in)color
- The color (A COM typedef) (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public boolean isFieldAccessible(Object index) throws IOException, AutomationException
isFieldAccessible
in interface IARFeature
index
- A Variant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getValueAsString(Object index) throws IOException, AutomationException
getValueAsString
in interface IARFeature
index
- A Variant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |