|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IXYEvent2FieldsProperties
Provides access to members that define the fields needed to create an XY event layer. A minimum of two fields (X and Y) are required.
The IXYEvent2FieldsProperties interface has properties for specifying the x field name, the y field name and the z field name. The x and y field name properties are required and must always return valid fields names, while the z field name is optional. The number 2 appears in the interface name because two of the three fields are required.
This information is used when creating a new XY feature class and can be returned from an existing XY feature class.
The fields must have numeric data types. For example, if your coordinates are stored in degrees, minutes and seconds, you need to convert them to decimal degrees and store them in numeric fields. These numeric fields can then be used to create an XY feature class.
Method Summary | |
---|---|
String |
getXFieldName()
The name of the X field. |
String |
getYFieldName()
The name of the Y field. |
String |
getZFieldName()
The name of the Z field (optional). |
void |
setXFieldName(String fieldName)
The name of the X field. |
void |
setYFieldName(String fieldName)
The name of the Y field. |
void |
setZFieldName(String fieldName)
The name of the Z field (optional). |
Method Detail |
---|
void setXFieldName(String fieldName) throws IOException, AutomationException
fieldName
- The fieldName (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.String getXFieldName() throws IOException, AutomationException
This field specified with this property must have a numeric data type.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setYFieldName(String fieldName) throws IOException, AutomationException
fieldName
- The fieldName (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.String getYFieldName() throws IOException, AutomationException
This field specified with this property must have a numeric data type.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setZFieldName(String fieldName) throws IOException, AutomationException
fieldName
- The fieldName (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.String getZFieldName() throws IOException, AutomationException
This field specified with this property must have a numeric data type.
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 |