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


IPoint.VertexAttribute Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IP > IPoint Interface > IPoint.VertexAttribute Property
ArcGIS Developer Help

IPoint.VertexAttribute Property

Any attribute (coordinate), except X or Y.

[Visual Basic .NET]
Public Function get_VertexAttribute ( _
    ByVal attributeType As esriGeometryAttributes _
) As Double
[Visual Basic .NET]
Public Sub set_VertexAttribute ( _
    ByVal attributeType As esriGeometryAttributes, _
    ByVal attributeValue As Double _
)
[C#]
public double get_VertexAttribute (
    esriGeometryAttributes attributeType
);
[C#]
public void set_VertexAttribute (
    esriGeometryAttributes attributeType,
    double attributeValue
);
[C++]
HRESULT get_VertexAttribute(
  esriGeometryAttributes attributeType,
  System.Double* attributeValue
);
[C++]
HRESULT put_VertexAttribute(
  esriGeometryAttributes attributeType,
  double attributeValue
);
[C++]
Parameters
attributeType 

attributeType is a parameter of type esriGeometryAttributes attributeValue [out, retval]
attributeValue is a parameter of type double* attributeType
attributeType is a parameter of type esriGeometryAttributes attributeValue
attributeValue is a parameter of type double

Product Availability

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

Description

Used to Get or Set a specific attribute (Z, M, or ID).

See Also

IPoint Interface