views:

41

answers:

0

i have written a code to select a text in flow documet reader and bring it into view

docView1.Focus();                
docView1.Selection.Select(textRange.Start, textRange.End);

docView1.BringIntoView(textRange.Start.GetCharacterRect(LogicalDirection.Forward));   

but flowdocumentreader.selection is not supported in .net framework 3.0 and i want to run code in computers that has not framework3.5

what can i do this by supported methods in .net framework 3.0?