MathElementBaseNary Method (MathNaryOperatorTypes, String, String) |
Creates a N-ary operator
Namespace:
Aspose.Slides.MathText
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.12.0.0 (20.12)
Syntaxpublic IMathNaryOperator Nary(
MathNaryOperatorTypes type,
string lowerLimit,
string upperLimit
)
Public Function Nary (
type As MathNaryOperatorTypes,
lowerLimit As String,
upperLimit As String
) As IMathNaryOperator
public:
virtual IMathNaryOperator^ Nary(
MathNaryOperatorTypes type,
String^ lowerLimit,
String^ upperLimit
) sealed
abstract Nary :
type : MathNaryOperatorTypes *
lowerLimit : string *
upperLimit : string -> IMathNaryOperator
override Nary :
type : MathNaryOperatorTypes *
lowerLimit : string *
upperLimit : string -> IMathNaryOperator
Parameters
- type
- Type: Aspose.Slides.MathTextMathNaryOperatorTypes
The N-ary operator type - lowerLimit
- Type: SystemString
The lower limit - upperLimit
- Type: SystemString
The upper limit
Return Value
Type:
IMathNaryOperatorNew instance of type
IMathNaryOperatorImplements
IMathElementNary(MathNaryOperatorTypes, String, String)
ExamplesExample:
[C#]
IMathNaryOperator naryOperator = new MathematicalText("i").Nary(MathNaryOperatorTypes.Summation, "i=0", "𝑛");
See Also