ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data Namespace / Feature Class / GetOriginalValue Method
The index of the field.

In This Topic
    GetOriginalValue Method (Feature)
    In This Topic
    Gets the original value of a field at the given index. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public override object GetOriginalValue( 
       int index
    )
    Public Overrides Function GetOriginalValue( _
       ByVal index As Integer _
    ) As Object

    Parameters

    index
    The index of the field.

    Return Value

    The value of the field.
    Exceptions
    ExceptionDescription
    The index argument is out of range.
    A geodatabase-related exception has occurred.
    index corresponds to a shape field index and the type of shape (i.e., geometry) is not supported.
    Remarks
    The index for the fields is zero based. If the Field.FieldType corresponding to the specified field index is FieldType.Blob, the value will be System.IO.MemoryStream.
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also