trichview.support
Re: Select an item |
Author |
Message |
Sergey Tkachenko |
Posted: 09/15/2002 17:56:12 Use OnRVMouseUp. PS: When you'll click in table, the whole table will be selected (in older version of RV, this may cause AV); To prevent this (select text in table cell instead), use rv_editor->TopLevelEditor instead of rv_editor. > To select an item when the user clicks in the document I tried the > following: > > void __fastcall TReportForm1::rv_editorClick(TObject *Sender) > { > int item= rv_editor->CurItemNo; > int offsBefore= rv_editor->GetOffsBeforeItem(item); > int offsAfter= rv_editor->GetOffsAfterItem(item); > rv_editor->SetSelectionBounds(item, offsBefore, item, offsAfter); > } > > However the result is not as expected: The selection is from the beginnig of > the item up to the cursor (the click point) instead of up to the end of the > item. What went wrong here? > > Benedikt > > |
Powered by ABC Amber Outlook Express Converter