ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Core Namespace / ApplicationOptions Class / VersioningOptions Property
Example

In This Topic
    VersioningOptions Property
    In This Topic
    Gets the application versioning options.
    Syntax
    Public Shared ReadOnly Property VersioningOptions As VersioningOptions
    public static VersioningOptions VersioningOptions {get;}
    Example
    Get and Set Versioning Options
    {
      var vOptions = ApplicationOptions.VersioningOptions;
    
      vOptions.DefineConflicts = (vOptions.DefineConflicts == ConflictDetectionType.ByRow) ?
        ConflictDetectionType.ByColumn : ConflictDetectionType.ByRow;
      vOptions.ConflictResolution = (
        vOptions.ConflictResolution == ConflictResolutionType.FavorEditVersion) ?
          ConflictResolutionType.FavorTargetVersion : ConflictResolutionType.FavorEditVersion;
      vOptions.ShowConflictsDialog = !vOptions.ShowConflictsDialog;
      vOptions.ShowReconcileDialog = !vOptions.ShowReconcileDialog;
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also