Skip to content

Alignment create table field

Tako Lee edited this page Mar 2, 2024 · 7 revisions

Delphi

  • gfmtopt.Createtable_Fieldlist_Align_option, type of TAlignOption

Java

  • TODO

Uniform

  • Align field name in create table statement
    • Left align:

      Option: fmt176_createtable_field_align = left, type: TFmtAlign.

      CREATE TABLE mytable ( low  int,
                             high int, 
                             myavg AS (low + high)/2 ) ;
    • Right align:

      Option: fmt176_createtable_field_align = right, type: TFmtAlign.

      CREATE TABLE mytable (   low  int,
                              high int, 
                             myavg AS (low + high)/2 ) ;
Clone this wiki locally