{
{   The purpose of this request is to create an object on the form image.  The
{ object may be a line drawing, a box drawing, constant text, or variable
{ text.  The text may occupy a portion of a single line or occupy a
{ rectangular area on the form.  Text that occupies a rectangular area is
{ called a text box.  A text box may be used to display on the terminal screen
{ only a part of the data.  A text box allows clipping and wrapping of data to
{ fit the visual area of the box.  The data in the box may be scrolled to see
{ or enter more data.  The origin of a box box drawing or text box) is the
{ upper left corner.  The origin of a line is the upper left point of the
{ line.  The origin of a text line is the left most character of the text.
{ You may give name and display attributes to the object.  Programs may
{ manipulate the object using the name.  The name also associates a variable
{ text object with its variable definition.
{
{       FDP$CREATE_OBJECT (FORM_IDENTIFIER, X_POSITION, Y_POSITION,
{         OBJECT_DEFINITION, OBJECT_ATTRIBUTES, STATUS)
{
{ FORM_IDENTIFIER: (input)  This parameter specifies the form identifier for
{       the instance of the form.
{
{ X_POSITION: (input)  This parameter specifies the x coordinate for the
{       origin of the object.
{
{ Y_POSITION: (input)  This parameter specifies the y coordinate for the
{       origin of the object.
{
{ OBJECT_DEFINITION: (input)  This parameter specifies the definition of the
{       object.  This is a record with a key field specifying the type of
{       object.
{
{ OBJECT_ATTRIBUTES: (input/output)  This parameter specifies an array of
{       attributes for the object.
{
{ STATUS: (output) This parameter specifies the name of the variable
{       to set to indicate the status of the request.
{
{       condition identifiers: fde$bad_data_value
{                              fde$cannot_change_form
{                              fde$invalid_address
{                              fde$invalid_form_identifier
{                              fde$invalid_height
{                              fde$invalid_object_attribute
{                              fde$invalid_object_change
{                              fde$invalid_object_key
{                              fde$invalid_object_name
{                              fde$invalid_occurrence
{                              fde$object_occurrence_exists
{                              fde$invalid_text_processing
{                              fde$invalid_width
{                              fde$invalid_x_increment
{                              fde$invalid_x_position
{                              fde$invalid_y_increment
{                              fde$invalid_y_position
{                              fde$no_text_for_object
{                              fde$no_space_available
{                              fde$object_not_in_form
{                              fde$object_overlays
{                              fde$system_error
{
