In WPTools 5, the following was used to copy the selected text, But in WPTools8, it copies the whole thing. What am I missing now?
Code
WPRichText_Temp.SelStart := vStartPos;
WPRichText_Temp.SelLength := (vEndPos - vStartPos) + 1;
WPRichText3.Clear;
WPRichText3.AsString := WPRichText_Temp.SelectionAsString;
In one case, SelStart is 851 and SelLength is 1432, but it still copies all of WPRichText_Temp into WPRichText3.