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


IEngineEditProperties.AutoSaveOnVersionRedefined Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Controls > ESRI ArcGIS Controls > Interfaces > IE > IEngineEditProperties Interface > IEngineEditProperties.AutoSaveOnVersionRedefined Property
ArcGIS Developer Help

IEngineEditProperties.AutoSaveOnVersionRedefined Property

Indicates whether the stop editing process should automatically reconcile an edit session and save the version without notification.

[Visual Basic .NET]
Public Property AutoSaveOnVersionRedefined As Boolean
[C#]
public bool AutoSaveOnVersionRedefined {get; set;}
[C++]
HRESULT get_AutoSaveOnVersionRedefined(
  Boolean* stretch
);
[C++]
HRESULT put_AutoSaveOnVersionRedefined(
  VARIANT_BOOL stretch
);
[C++]
Parameters
stretch [out, retval]

stretch is a parameter of type bool* stretch [in]
stretch is a parameter of type bool

Product Availability

Available with ArcGIS Engine.

Description

Auto reconciliation provides the user the ability to delay the save process for after the reconciliation. This allows the user to inspect the results of the reconciliation prior to saving. By default AutoSaveOnVersionRedefined is false.

If AutoSaveOnVersionRedefined is true, auto reconciliation will automatically reconcile the edit session with the version's current database state and save, making changes available to others using the database.

If AutoSaveOnVersionRedefined is false, when a save occurs, the edit session will be reconciled with the version's current database state, and then a message will inform the user that the edit session has been reconciled but has not been saved.

See Also

IEngineEditProperties Interface