ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data Namespace / AttributeRuleDefinition Class / GetIsFieldEditable Method
Example

In This Topic
    GetIsFieldEditable Method
    In This Topic
    Gets if the field that the rule applies to is editable. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public bool GetIsFieldEditable()
    Public Function GetIsFieldEditable() As Boolean

    Return Value

    The editability flag for the attribute rule field.
    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run
    A geodatabase-related exception has occurred.
    Remarks
    Only calculation rules can specify if the field is editable. All other rules types are always editable.
    Example
    Get attribute rules of a dataset
    public void GetAttributeRules(Geodatabase geodatabase, string tableName)
    {
      using (TableDefinition tableDefinition = geodatabase.GetDefinition<TableDefinition>(tableName))
      {
        // Get all attribute rule types
        IReadOnlyList<AttributeRuleDefinition> ruleDefinitions = tableDefinition.GetAttributeRules();
    
        // Iterate rule definitions
        foreach (AttributeRuleDefinition ruleDefinition in ruleDefinitions)
        {
          AttributeRuleType ruleType = ruleDefinition.GetAttributeRuleType();
          string ruleDescription = ruleDefinition.GetDescription();
          bool isAttributeFieldEditable = ruleDefinition.GetIsFieldEditable();
          string arcadeVersionToSupportRule = ruleDefinition.GetMinimumArcadeVersion();
          int ruleEvaluationOrder = ruleDefinition.GetEvaluationOrder();
          AttributeRuleTriggers triggeringEvents = ruleDefinition.GetTriggeringEvents();
          string scriptExpression = ruleDefinition.GetScriptExpression();
    
          // more properties
        }
      }
    }
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.2 or higher.
    See Also