Search found 2 matches

by csoftlab
Mon Aug 26, 2024 8:58 pm
Forum: Support
Topic: LoadRVFFromStream into a table cell does not load backround
Replies: 1
Views: 4285

Re: LoadRVFFromStream into a table cell does not load backround

Seems I've found a solution.

Code: Select all

		table->Cells[j][i]->Color = RichViewEdit1->Color;
		table->Cells[j][i]->BackgroundImage = RichViewEdit1->Background->Bitmap;
		table->Cells[j][i]->BackgroundStyle = RichViewEdit1->Background->ItemBackStyle;
by csoftlab
Mon Aug 26, 2024 8:33 pm
Forum: Support
Topic: LoadRVFFromStream into a table cell does not load backround
Replies: 1
Views: 4285

LoadRVFFromStream into a table cell does not load backround

Hello Sergey, I have RichViewEdit1 and RichViewEdit2 on a form. One contains some text with a background image (or a background color). The other contains a table with several cells. I need to copy full RichViewEdit1 content into a table cell of RichViewEdit2. I use this code: TStream* Stream = new ...