length method

ColumnDefinition length(
  1. int len
)

Specifies the length of the column (for string types).

Implementation

ColumnDefinition length(int len) {
  _lengthValue = len;
  return this;
}