我正在尝试在富文本框中的每个OLE的位置添加一个组件。我知道如何检索选择的索引,但有没有办法找到选择的Point
?
这是我正在使用的代码:
private void richTextBox2_TextChanged(object sender, EventArgs e)
{
if(FileTextBox.Rtf.Contains(@"\pict\wmetafile8\"))
{
var location = FileTextBox.SelectionStart.Text.IndexOf(@"\pict\wmetafile8\");
//Here is where I want to place a new component at the location of the OLE
}
}