| setDisplayValue | 
                      TableColumn.setDisplayValue( value ) | 
                      Sets a value for the form field using the appropriate display format for the field type and the language currently in use. | 
                    
                    
                      | getDisplayValue | 
                      TableColumn.getDisplayValue( [formatted ] ) | 
                      Returns a String representing the displayable value of the form field, 
 optionally formatted for the user's locale. | 
                    
                    
                      | getStringValue | 
                      TableColumn.getStringValue( ) | 
                      Returns a String value for the field that can be used to pass the value when calling 
 another form, an Integration Service or opening a workflow job (see examples below). | 
                    
                    
                      | getType | 
                      TableColumn.getType( ) | 
                      Returns the form field type. | 
                    
                    
                      | setValue | 
                      TableColumn.setValue( value ) | 
                      Sets a value for the form field. | 
                    
                    
                      | getValue | 
                      TableColumn.getValue( ) | 
                      Returns an Object representing the value of the form field. | 
                    
                  
                 
TableColumninterface represents a table column form, integration service or workflow job.Individual table columns can be accessed via their parent table.
Example:
tables.TAB1.COL1.value = 22; tables.TAB1.getColumn("COL2").value = "Test";