使用此代碼編程方式插入的公式編輯器3.0在Word 2010中
var app = Globals.ThisAddIn.Application;
Range rng = app.ActiveDocument.Range();
rng.Text = "BD/DC = AB/AC ";
rng = rng.OMaths.Add(rng);
OMath objEq = rng.OMaths[1] ;
objEq.BuildUp();
我可以輸入一個公式到Word 2010,但它出現在new equation editor
。
我想在舊的公式編輯器中插入一個公式(Equation Editor 3.0
)。這在C#VSTO中可能嗎?
我可以通過insert object --> Equation Editor 3.0
手動執行Word 2010
,然後輸入公式,但我想通過c#來完成。
哇!非常感謝!真的,這是一個好的開始。現在如何操縱它?...也許問問關於SO的另一個問題;) –
我發現http://stackoverflow.com/questions/2729352/creating-an-equation-editor-3-0-equation-in-a- word-2003-document-using-a-marco這個頁面,它建議嘗試MathTypeSDK。我會試一試。 –
嘗試過,但它要求系統上不存在的MT6.dll。有沒有辦法通過C#vsto向公式編輯器3.0添加方程式? –