我试图在VSTO中找到Word文档的左边界与表格的左边界之间的距离(以像素为单位)。
我已经尝试了以下方法:
int height = table.Range.Information[Word.WdInformation.wdVerticalPositionRelativeToTextBoundary];
// This isn't working - there is no get_information method in Range object
Word.Range range = table.Rows[1].Range;
int height =
range.get_Information(Word.WdInformation.wdActiveEndAdjustedPageNumber);
有什么方法可以做到吗?还是VSTO阻止了相对于页面的像素上的操作?