|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.interop.Dispatch com.esri.arcgis.geodatabase.IRepresentationProxy
public class IRepresentationProxy
Provides access to members that return and set properties of a representation.
A feature representation is a feature enabled with representation capabilities. There are 3 different ways to create representations:
Use IRepresentation interface to get a reference to the feature representation and modify its attributes.
RepresentationClass property can be used to get a reference to the feature class representation which the representation belongs to.
RuleID property is used to get or set the value for the representation rule present in the RuleID field which is then used to symbolize the feature representations. All representations converted to free representations will have the value of RuleID equal to -1.
How to convert a feature representation into a free representation which uses representation graphics for drawing:
Shape property returns a reference to the shape of the feature representation as geographic geometry. Use IMapContext::FromGeographyToMap method to convert geographic geometry to map context geometry.
Use ShapeEdit property to make edits to the shape, for example, to create a shape override. This property uses a copy of the shape object so, editing will not cause any change to the actual feature's shape but will do so in the copied object.
ShapeCopy is the property which creates a clone of the shape object. If you do not wish to use the clone then use ShapeEdit instead of this property.
UpdateFeature method must be called after a feature representation's attributes have been altered. In order to store the changes into the feature, IFeature::Store method must be used.
Field Summary | |
---|---|
boolean |
noncastable
|
Fields inherited from class com.esri.arcgis.interop.Dispatch |
---|
DISPATCH_METHOD, DISPATCH_PROPERTYGET, DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF, objRef |
Constructor Summary | |
---|---|
|
IRepresentationProxy()
|
|
IRepresentationProxy(Object obj)
|
protected |
IRepresentationProxy(Object obj,
String iid)
|
Method Summary | |
---|---|
void |
addListener(String iidStr,
Object theListener,
Object theSource)
|
IFeature |
getFeature()
The feature associated with this representation. |
IRepresentationGraphics |
getGraphics()
The Graphics object that describes the free representation. |
IMapContext |
getMapContext()
Map context in which the representation is defined. |
IRepresentationClass |
getRepresentationClass()
The representation class to which this representation belongs. |
int |
getRuleID()
Rule ID. |
IGeometry |
getShape()
Representation geometry. |
IGeometry |
getShapeCopy()
Copy of the representation geometry. |
IGeometry |
getShapeEdit()
Representation geometry. |
Object |
getValue(IGraphicAttributes attrs,
int idx)
The value of a representation property. |
boolean |
isHasShapeOverride()
Indicates if the shape is overriden. |
void |
removeListener(String iidStr,
Object theListener)
|
void |
removeShapeOverride()
Removes the shape override. |
void |
setGraphics(IRepresentationGraphics graphics)
The Graphics object that describes the free representation. |
void |
setRuleID(int iD)
Rule ID. |
void |
setShapeByRef(IGeometry shape)
Representation geometry. |
void |
setValue(IGraphicAttributes attrs,
int idx,
Object val)
The value of a representation property. |
void |
updateFeature()
Updates the feature fields with the information contained in the representation. |
Methods inherited from class com.esri.arcgis.interop.Dispatch |
---|
bindUsingMoniker, constructVtblPosTable, convertToNative, cookieForListener, createDispatch, createObjrefMonikerDisplayName, equals, getActiveObject, getActiveObject, getDefaultProperty, getDispatchIdOfName, getLastErrorCode, getMtsObjectContext, getObjRef, getPropertyByName, getPropertyByName, getVtblPos, hashCode, initDispatch, invoke, invokeMethodByName, invokeMethodByName, invokeMethodByName, invokePropertyGetByName, invokePropertyPutByName, invokePropertyPutByRefByName, isNativeMode, isObjRef, optimizedVtblInvoke, queryInterface, readExternal, release, setNativeMode, setPropertyByName, toString, vtblInvoke, writeExternal |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public boolean noncastable
Constructor Detail |
---|
public IRepresentationProxy()
public IRepresentationProxy(Object obj) throws IOException
IOException
protected IRepresentationProxy(Object obj, String iid) throws IOException
IOException
Method Detail |
---|
public void addListener(String iidStr, Object theListener, Object theSource) throws IOException
addListener
in class com.esri.arcgis.interop.Dispatch
IOException
public void removeListener(String iidStr, Object theListener) throws IOException
removeListener
in class com.esri.arcgis.interop.Dispatch
IOException
public IRepresentationClass getRepresentationClass() throws IOException, AutomationException
getRepresentationClass
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IFeature getFeature() throws IOException, AutomationException
getFeature
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IMapContext getMapContext() throws IOException, AutomationException
getMapContext
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getRuleID() throws IOException, AutomationException
Use RuleID property to change the representation rule for a feature representation. Setting this property to a different RuleID will not persist the change until UpdateFeature is called and the change for the feature is stored using IFeature::Store method.
If the RuleID does not exist in the collection of RepresentationRules object, then RuleID will return an esriRepresentationError (REP_E_INVALID_REP_RULE_ID).
getRuleID
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setRuleID(int iD) throws IOException, AutomationException
setRuleID
in interface IRepresentation
iD
- The iD (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IGeometry getShape() throws IOException, AutomationException
Shape property returns a reference to either the actual shape of the feature or the overriden shape of the representation depending on whether a shape override exists for the representation.
Use Shape property to create shape override which gets stored into the Override field. UpdateFeature and IFeature::Store methods must be called after the shape is altered to persist the changes.
If IRepresentationClass::RequireShapeOverride returns False then altering the shape of the feature representation will directly alter the feature's shape.
Note: It is necessary to set IRepresentationClass::RequireShapeOverride property to True, if you wish to store the shape overrides into Override field rather than altering the actual feature's shape.
getShape
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IGeometry getShapeEdit() throws IOException, AutomationException
ShapeEdit property returns a reference to the copy of either the shape of the feature or the overriden shape of the representation depending on whether a shape override exists for the representation. Use this property when you wish to edit the attributes of this object.
getShapeEdit
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IGeometry getShapeCopy() throws IOException, AutomationException
ShapeCopy property returns a reference to the clone of either the shape of the feature or the overriden shape of the representation depending on whether a shape override exists for the representation. Use this property when you wish to edit the attributes of this object.
getShapeCopy
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setShapeByRef(IGeometry shape) throws IOException, AutomationException
setShapeByRef
in interface IRepresentation
shape
- A reference to a com.esri.arcgis.geometry.IGeometry (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public boolean isHasShapeOverride() throws IOException, AutomationException
HasShapeOverride property will return True if the feature representation's shape property is overridden. To remove shape override, use RemoveShapeOverride property.
For removing other attribute overrides, use either IOverride::RemoveOverride or IOverride::RemoveOverrides method.
isHasShapeOverride
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void removeShapeOverride() throws IOException, AutomationException
For removing other attribute overrides, use either IOverride::RemoveOverride or IOverride::RemoveOverrides method.
removeShapeOverride
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IRepresentationGraphics getGraphics() throws IOException, AutomationException
Use Graphics property to get or set a reference to the graphic object when representation is based on free representation. A free representation (Graphics) has a RepresentationRuleID value equal to -1. For all other representations, the RuleID value is a valid value and always greater than or equal to 1.
Graphics property will return an empty object when the representation is not based on free representation.
How to convert a feature representation into a free representation which uses Graphics for drawing:
getGraphics
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setGraphics(IRepresentationGraphics graphics) throws IOException, AutomationException
setGraphics
in interface IRepresentation
graphics
- A reference to a com.esri.arcgis.display.IRepresentationGraphics (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void updateFeature() throws IOException, AutomationException
UpdateFeature method must be called after a feature representation's attributes have been altered. In order to store and persist the changes into the feature, IFeature::Store method must be called.
updateFeature
in interface IRepresentation
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public Object getValue(IGraphicAttributes attrs, int idx) throws IOException, AutomationException
getValue
in interface IRepresentation
attrs
- A reference to a com.esri.arcgis.display.IGraphicAttributes (in)idx
- The idx (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setValue(IGraphicAttributes attrs, int idx, Object val) throws IOException, AutomationException
setValue
in interface IRepresentation
attrs
- A reference to a com.esri.arcgis.display.IGraphicAttributes (in)idx
- The idx (in)val
- 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 |