With the clicks cell the content a spreadsheet in Edit shows
Posted: Sat Jul 19, 2008 12:30 pm
With the clicks one single table cell the cell-content with Edit shows. Who can help?
Thank you
JM
Thank you
JM
Support forums for TRichView, ScaleRichView, Report Workshop and RVMedia components
https://writeally.com/forums/
Code: Select all
procedure TForm3.RichViewEdit1RVMouseUp(Sender: TCustomRichView;
Button: TMouseButton; Shift: TShiftState; ItemNo, X, Y: Integer);
begin
if (Button<>mbLeft) or (Shift<>[]) then
exit;
if RichViewEdit1.InplaceEditor<>nil then
Edit1.Text := GetAllText(RichViewEdit1.TopLevelEditor)
else
Edit1.Text := ''; // not a cell
end;