| 
 
  | 
                Writes data to a Blob, when opened for writing                
function PXBlobPut
   (BlbHandle        : BlobHandle;   { Blob handle to write to              }
    Size             : Word;         { size of data to be written           }
    Offset           : Longint;      { offset from start of Blob to write   }
    var Buffer): Integer;            { buffer containing data to be written }
Errors: PXERR_BLOBMODE       51  Operation not applicable for Blobs open mode
        PXERR_BLOBINVOFFSET  53  Invalid offset into Blob
        PXERR_BLOBINVSIZE    54  Invalid size for Blob
        PXERR_BLOBINVHANDLE  59  Invalid Blob handle | 
| 
 
  |