@servicenow/sdk - v4.7.0
    Preparing search index...

    Function MultiLineTextColumn

    • A Column for a multiple line small text area field. Allows multi-line text input without the complexity of rich text editing.

      Type Parameters

      • const Type extends string
      • const Default extends string
      • const C extends Column<Type, Default>

      Parameters

      • config: C & Column<Type, Default>

        an object that can include all base Column properties

        • maxLength? - maximum number of characters allowed in this field

      Returns Typed<Type, C>

      const description = MultiLineTextColumn({
      label: 'Description',
      maxLength: 1000,
      })

      const notes = MultiLineTextColumn({
      label: 'Notes',
      default: 'Enter notes here...',
      })