Icon Insert Method

procedure Insert(InsertPos: Integer; const Name: String;
      DataType: TFieldType; Size: Integer=0; Required: Boolean=False;
      const DefaultValue: String=''; const MinValue: String=''; const
      MaxValue: String=''; const Description: String=''; CharCase:
      TFieldCharCase=fcNoChange; Compression: Byte=NO_COMPRESSION)

procedure Insert(InsertPos: Integer; FieldNo: Integer; const
      Name: String; DataType: TFieldType; Size: Integer=0; Required:
      Boolean=False; const DefaultValue: String=''; const MinValue:
      String=''; const MaxValue: String=''; const Description:
      String=''; CharCase: TFieldCharCase=fcNoChange; Compression:
      Byte=NO_COMPRESSION)

Usage

Call the Insert method to insert a new field definition object at a specific position in the list of field definitions for the table. The InsertPos parameter is an integer identifying the field definition's position in the list of field definitions, in the range of 0 to the value of the Count property minus 1. Please see the TDBISAMFieldDef object for more information on each parameter to this method.
Image