如何获取摩纳哥编辑器中列的水平位置(左偏移)?

How to get the horizontal position (left offset) for the colunm in monaco editor?

我需要将 [lineNmber, column] 坐标转换为左上角的 [x, y] 像素坐标,我发现 API getTopForLineNumber 和 getTopForPosition 将 lineNumber 转换为垂直像素坐标,但我没有找到任何 API 将列转换为水平像素坐标。有什么方法可以将列转换为水平像素坐标?

尝试使用 getOffsetForColumn 方法从行首获取列的偏移量。