 TYPE
    fdt$form_object_definition = record
      display_attribute: fdt$display_attribute_set,
      name: ost$name,
      occurrence: fdt$occurrence,
      x_position: fdt$x_position,
      y_position: fdt$y_position,

      case key: fdt$form_object_key of

      = fdc$form_box =
        box_height: fdt$height,
        box_width: fdt$width,


      = fdc$form_constant_text =
        constant_text: fdt$text_pointer,
        constant_text_width: fdt$width,

      = fdc$form_constant_text_box =
        constant_box_height: fdt$height,
        constant_box_fragment_index: fdt$object_index,
        constant_box_processing: fdt$text_box_processing,
        constant_box_text: fdt$text_pointer,
        constant_box_width: fdt$width,

      = fdc$form_line =
        x_increment: fdt$x_increment,
        y_increment: fdt$y_increment,

      = fdc$form_stored_variable =
        stored_variable_exists: boolean,
        stored_variable_index: fdt$variable_index,
        stored_variable_text: fdt$text_pointer,

      = fdc$form_table =
        table_height: fdt$height,
        table_width: fdt$width,

      = fdc$form_text_box_fragment =
        fragment_width: fdt$width,
        next_fragment_object_index: fdt$object_index,
        parent_text_box_object_index: fdt$object_index,

      = fdc$form_unused_object =
         ,

      = fdc$form_variable_text =
        text_variable_exists: boolean,
        text_variable_index: fdt$variable_index,
        text_variable_text: fdt$text_pointer,
        text_variable_width: fdt$width,


      = fdc$form_variable_text_box =
        variable_box_fragment_index: fdt$object_index,
        variable_box_height: fdt$height,
        variable_box_processing: fdt$text_box_processing,
        variable_box_text: fdt$text_pointer,
        variable_box_variable_exists: boolean,
        variable_box_variable_index: fdt$variable_index,
        variable_box_width: fdt$width,

      casend
    recend;

*copyc fdt$display_attribute_set
*copyc fdt$form_object_key
*copyc fdt$height
*copyc fdt$object_definition_key
*copyc fdt$object_index
*copyc fdt$occurrence
*copyc fdt$text_pointer
*copyc fdt$text_box_processing
*copyc fdt$text_pointer
*copyc fdt$variable_index
*copyc fdt$width
*copyc fdt$x_increment
*copyc fdt$y_increment
*copyc fdt$x_position
*copyc fdt$y_position
*copyc ost$name

