0
Sub FormatOMaths()
Dim formula As OMath
For Each formula In ActiveDocument.OMaths
formula.Range.Font.TextColor = RGB(255, 0, 0)
Next
End Sub
這始終執行從文檔的開頭開始。我怎樣才能修改腳本從光標所在的位置到文檔的末尾運行?謝謝,
您必須將光標範圍與OMath對象範圍進行比較 – jsotola