如何在富文本框选择的屏幕上找到位置?

时间:2017-05-29 05:59:09

标签: c# winforms visual-studio

我正在尝试在富文本框中的每个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
        }
    }

0 个答案:

没有答案