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


IObjectInspector.Copy Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Editor > ESRI.ArcGIS.Editor > Interfaces > IO > IObjectInspector Interface > IObjectInspector.Copy Method
ArcGIS Developer Help

IObjectInspector.Copy Method

Copies the values from srcRow to the row being edited.

[Visual Basic .NET]
Public Sub Copy ( _
    ByVal srcRow As IRow _
)
[C#]
public void Copy (
    IRow srcRow
);

Product Availability

Available with ArcGIS Desktop.

Remarks

Use the Copy property to get rows that have been copied using the context menu in the tree control of the Attributes Dialog located on the Editor Toolbar.
[Visual Basic .NET]




Copies the values from srcRow of the feature to the row being edited.




Public Sub Copy(ByVal srcRow As ESRI.ArcGIS.Geodatabase.IRow) 
Implements ESRI.ArcGIS.Editor.IObjectInspector.Copy
  Me.m_inspector.Copy(srcRow)
End Sub



See Also

IObjectInspector Interface