Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用适用于 .NET 的 PDFium PDF 库来实现注释。
我希望能够得到的第一件事是所选文本的 charIndex(位置/坐标)。我已经浏览了文档和常见问题解答。
我想做类似的事情;
var myCharIndex = PdfViewer.SelectedText.CharIdex; //code not OK, I know.
我回来分享对我有用的解决方案。
我使用了“SelectInfo”属性,它给了我 EndIndex、EndPage、StartIndex、StartPage 值。
前任;
var startIndex = PdfViewer.SelectedInfo.StartIndex;
干杯,
吉大师。