Join
Join(IMathElement)
将数学元素与此数学块连接
public override IMathBlock Join(IMathElement mathElement)
参数 | 类型 | 描述 |
---|---|---|
mathElement | IMathElement | 要连接的元素 |
返回值
当前的 IMathBlock 实例
示例
示例:
[C#]
IMathElement element1 = new MathematicalText("x");
IMathElement element2 = new MathematicalText("y");
IMathBlock block = element1.Join(element2);
另请参阅
- 接口 IMathBlock
- 接口 IMathElement
- 类 MathBlock
- 命名空间 Aspose.Slides.MathText
- 程序集 Aspose.Slides
Join(string)
将数学文本与此数学块连接
public override IMathBlock Join(string mathText)
参数 | 类型 | 描述 |
---|---|---|
mathText | String | 要连接的数学文本 |
返回值
包含此实例和指定参数的新 IMathBlock
示例
示例:
[C#]
IMathElement element = new MathematicalText("x");
IMathBlock block = element.Join("+y");
另请参阅
- 接口 IMathBlock
- 类 MathBlock
- 命名空间 Aspose.Slides.MathText
- 程序集 Aspose.Slides