SetSubscript
Contents
[
Hide
]SetSubscript(IMathElement)
Creates subscript
public IMathSubscriptElement SetSubscript(IMathElement subscript)
Parameter | Type | Description |
---|---|---|
subscript | IMathElement | Subscript (lower index on the right) |
Return Value
New math element of type IMathSubscriptElement
Examples
Example:
[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("i");
IMathSubscriptElement subscript = element.SetSubscript(index);
See Also
- interface IMathSubscriptElement
- interface IMathElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
SetSubscript(string)
Creates subscript
public IMathSubscriptElement SetSubscript(string subscript)
Parameter | Type | Description |
---|---|---|
subscript | String | Subscript (lower index on the right) |
Return Value
New math element of type IMathSubscriptElement
Examples
Example:
[C#]
IMathElement element = new MathematicalText("N");
IMathSubscriptElement subscript = element.SetSubscript("i");
See Also
- interface IMathSubscriptElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides