Syntax Element: with

Description

Declares a list of attributes for a design element.

Example

This keyword is highlighted like this.
You can click on keywords and concepts in blue.
handdatabase DB
{
  version 1.0 : initialized
  {
    types int as integer;
    stereotypes table, column;
    
    design
    {
      public table X ("dat_X")
      {
        public column MyColumn with
          public DataType = type(int),
          public SortOrder = "ASC";
      }
    }
  }
}

Related Use Cases

Other Actions

documentation | all examples for this syntax element | all examples | use cases | concepts | keywords