SetSubSuperscriptOnTheLeft
SetSubSuperscriptOnTheLeft(IMathElement, IMathElement)
在左侧创建下标和上标
public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(IMathElement subscript,
IMathElement superscript)
范围 | 类型 | 描述 |
---|---|---|
subscript | IMathElement | 下标(下左侧索引) |
superscript | IMathElement | 上标(左侧上部索引) |
返回值
新数学元素类型IMathLeftSubSuperscriptElement
例子
示例:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft(subscript, superscript);
也可以看看
- interface IMathLeftSubSuperscriptElement
- interface IMathElement
- class MathElementBase
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides
SetSubSuperscriptOnTheLeft(string, string)
在左侧创建下标和上标
public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(string subscript,
string superscript)
范围 | 类型 | 描述 |
---|---|---|
subscript | String | 下标(下左侧索引) |
superscript | String | 上标(左侧上部索引) |
返回值
新数学元素类型IMathLeftSubSuperscriptElement
例子
示例:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft("i", "j");
也可以看看
- interface IMathLeftSubSuperscriptElement
- class MathElementBase
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides