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


IObjectLoader.LoadObjects Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > EditorExt > ESRI.ArcGIS.EditorExt > Interfaces > IO > IObjectLoader Interface > IObjectLoader.LoadObjects Method
ArcGIS Developer Help

IObjectLoader.LoadObjects Method

Loads an object into an existing object class.

[Visual Basic .NET]
Public Function LoadObjects ( _
    ByVal Editor As IEditor, _
    ByVal inputTable As ITable, _
    ByVal inputQueryFilter As IQueryFilter, _
    ByVal outputTable As ITable, _
    ByVal OutputFields As IFields, _
    ByVal setSubType As Boolean, _
    ByVal subTypeCode As Integer, _
    ByVal snapToFeatures As Boolean, _
    ByVal applyValidation As Boolean, _
    ByVal flushInterval As Integer, _
    ByRef ppInvalidObjectEnum As IEnumInvalidObject _
) As ISelectionSet
[C#]
public ISelectionSet LoadObjects (
    IEditor Editor,
    ITable inputTable,
    IQueryFilter inputQueryFilter,
    ITable outputTable,
    IFields OutputFields,
    bool setSubType,
    int subTypeCode,
    bool snapToFeatures,
    bool applyValidation,
    int flushInterval,
    ref IEnumInvalidObject ppInvalidObjectEnum
);

Product Availability

Available with ArcGIS Desktop.

Remarks

It is not required to pass in a valid object for IEditor to the LoadObjects method; passing in a null reference is acceptable.

See Also

IObjectLoader Interface