Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxSpreadSheetTableView.CopyCellDataToStream(string,TStream) Method

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

#Declaration

Delphi
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