ArcObjects Library Reference (Controls)  

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(
  VARIANT_BOOL* stretch
);
[C++]
HRESULT put_AutoSaveOnVersionRedefined(
  VARIANT_BOOL stretch
);
[C++]

Parameters

stretch [out, retval]   stretch is a parameter of type VARIANT_BOOL stretch [in]   stretch is a parameter of type VARIANT_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