ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Editing.Attributes Namespace / Attribute Class / IsNullable Property
Example

In This Topic
    IsNullable Property (Attribute)
    In This Topic
    Gets whether this attribute value can be null.
    Syntax
    Public ReadOnly Property IsNullable As Boolean
    public bool IsNullable {get;}
    Example
    Get a layers schema using Inspector
    // Loads the schema of the specified feature layer and iterates through its attributes,  providing access to their properties such as field name, alias, type, and other metadata.
    await QueuedTask.Run(() =>
    {
      // create an instance of the inspector class
      var inspector = new Inspector();
      // load the layer
      inspector.LoadSchema(featureLayer);
      // iterate through the attributes, looking at properties
      foreach (var attribute in inspector)
      {
        var fldName = attribute.FieldName;
        var fldAlias = attribute.FieldAlias;
        var fldType = attribute.FieldType;
        int idxFld = attribute.FieldIndex;
        var fld = attribute.GetField();
        var isNullable = attribute.IsNullable;
        var isEditable = attribute.IsEditable;
        var isVisible = attribute.IsVisible;
        var isSystemField = attribute.IsSystemField;
        var isGeometryField = attribute.IsGeometryField;
      }
    });
    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also