Skip to main content

TdxSpreadSheetTableView.CopyCellDataToStream(string,TStream) Method

Copies cell values and formatting from the cell range specified in A1 format to a stream.

Declaration

procedure CopyCellDataToStream(const AArea: string; AStream: TStream); overload;

Parameters

Name Type Description
AArea string

The source cell range specified as a string in A1 format.

AStream TStream

The target stream object.

Remarks

The CopyCellDataToStream and PasteCellDataFromStream procedures are designed to copy cell ranges between worksheets without the clipboard. Refer to the following topic for detailed information and code examples: How to Copy, Cut, and Paste Cell Data without Accessing the Clipboard.

Call the CopyCellDataToStream(TRect,TStream) procedure to define the copied cell range as a rectangle.

See Also