TPdfAttachmentWriter.Write Method
Overloads
- TPdfAttachmentWriter.Write(TBytes)
- TPdfAttachmentWriter.Write(TStream)
- TPdfAttachmentWriter.Write(TBytes, Integer, Integer)
TPdfAttachmentWriter.Write(TBytes)
Writes a byte array into the file.
Syntax
Unit: FlexCel.Pdf
procedure TPdfAttachmentWriter.Write(const data: TBytes); overload;
Parameters
<-> | Parameter | Type | Description |
---|---|---|---|
const | data | TBytes | Data to be written. |
See also
TPdfAttachmentWriter.Write(TStream)
Writes an stream into the file.
Syntax
Unit: FlexCel.Pdf
procedure TPdfAttachmentWriter.Write(const data: TStream); overload;
Parameters
<-> | Parameter | Type | Description |
---|---|---|---|
const | data | TStream | Stream with the data that will be written. Make sure it is at the correct position. |
See also
TPdfAttachmentWriter.Write(TBytes, Integer, Integer)
Writes part of a byte array into the file.
Syntax
Unit: FlexCel.Pdf
procedure TPdfAttachmentWriter.Write(const data: TBytes; const offset: Integer; const count: Integer); overload;
Parameters
<-> | Parameter | Type | Description |
---|---|---|---|
const | data | TBytes | Data to be written. |
const | offset | Integer | Offset in Data of the first byte to be written. |
const | count | Integer | Numbers of bytes to be written. |