This document is archived and information here might be outdated.  Recommended version.


IXYEvent2FieldsProperties Interface (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IX > IXYEvent2FieldsProperties Interface
ArcGIS Developer Help

IXYEvent2FieldsProperties Interface

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.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Members

Name Description
Read/write property XFieldName The name of the X field.
Read/write property YFieldName The name of the Y field.
Read/write property ZFieldName The name of the Z field (optional).

Classes that implement IXYEvent2FieldsProperties

Classes Description
XYEvent2FieldsProperties Defines the fields needed for an xy event layer, requiring atleast X and Y fields.

Remarks

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.

See Also

IXYEventSource Interface