SetSuperscript

SetSuperscript(IMathElement)

创建上标

public IMathSuperscriptElement SetSuperscript(IMathElement superscript)
范围类型描述
superscriptIMathElement上标(右侧上标)

返回值

类型的新数学元素IMathSuperscriptElement

例子

示例:

[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("4");
IMathSuperscriptElement superscript = element.SetSuperscript(index);

也可以看看


SetSuperscript(string)

创建上标

public IMathSuperscriptElement SetSuperscript(string superscript)
范围类型描述
superscriptString上标(右侧上标)

返回值

类型的新数学元素IMathSuperscriptElement

例子

示例:

[C#]
IMathElement element = new MathematicalText("N");
IMathSuperscriptElement superscript = element.SetSuperscript("4");

也可以看看