Enum EquationMathematicalOperatorType

EquationMathematicalOperatorType enumeration

Mathematical Operators Type

public enum EquationMathematicalOperatorType

Values

NameValueDescription
Unknown-1Use unknown type when not found in existing type.
ForAll0“∀” Unicode:\u2200
Complement1“∁” Unicode:\u2201
PartialDifferential2“∂” Unicode:\u2202
Exists3“∃” Unicode:\u2203
NotExists4“∄” Unicode:\u2204
EmptySet5“∅” Unicode:\u2205
Increment6“∆” Unicode:\u2206
Nabla7“∇” Unicode:\u2207
ElementOf8“∈” Unicode:\u2208
NotAnElementOf9“∉” Unicode:\u2209
SmallElementOf10“∊” Unicode:\u220a
Contain11“∋” Unicode:\u220b
NotContain12“∌” Unicode:\u220c
SmallContain13“∍” Unicode:\u220d
EndOfProof14“∎” Unicode:\u220e
NaryProduct15“∏” Unicode:\u220f
NaryCoproduct16“∐” Unicode:\u2210
NarySummation17“∑” Unicode:\u2211
LogicalAnd18“∧” Unicode:\u2227
LogicalOr19“∨” Unicode:\u2228
Intersection20“∩” Unicode:\u2229
Union21“∪” Unicode:\u222a
Integral22“∫” Unicode:\u222b
DoubleIntegral23“∬” Unicode:\u222c
TripleIntegral24“∭” Unicode:\u222d
ContourIntegral25“∮” Unicode:\u222e
SurfaceIntegral26“∯” Unicode:\u222f
VolumeIntegral27“∰” Unicode:\u2230
Clockwise28“∱” Unicode:\u2231
ClockwiseContourIntegral29“∲” Unicode:\u2232
AnticlockwiseContourIntegral30“∳” Unicode:\u2233
NaryLogicalAnd31“⋀” Unicode:\u22c0
NaryLogicalOr32“⋁” Unicode:\u22c1
NaryIntersection33“⋂” Unicode:\u22c2
NaryUnion34“⋃” Unicode:\u22c3

Examples

namespace AsposeCellsExamples
{
    using Aspose.Cells;
    using Aspose.Cells.Drawing.Equations;
    using System;

    public class EquationsClassEquationMathematicalOperatorTypeDemo
    {
        public static void Run()
        {
            // Create a new workbook
            Workbook workbook = new Workbook();
            Worksheet worksheet = workbook.Worksheets[0];

            // Add a text box to insert mathematical operators
            var textBox = worksheet.Shapes.AddTextBox(0, 0, 100, 100, 0, 0);
            textBox.Text = "Mathematical Operators Demo:\n";

            // Demonstrate various EquationMathematicalOperatorType values
            textBox.Text += $"ForAll: {(char)0x2200}\n";
            textBox.Text += $"Complement: {(char)0x2201}\n";
            textBox.Text += $"PartialDifferential: {(char)0x2202}\n";
            textBox.Text += $"Exists: {(char)0x2203}\n";
            textBox.Text += $"NarySummation: {(char)0x2211}\n";
            textBox.Text += $"LogicalAnd: {(char)0x2227}\n";
            textBox.Text += $"LogicalOr: {(char)0x2228}\n";
            textBox.Text += $"Integral: {(char)0x222B}\n";
            textBox.Text += $"DoubleIntegral: {(char)0x222C}\n";
            textBox.Text += $"NaryLogicalAnd: {(char)0x22C0}\n";

            // Using the enum values directly
            EquationMathematicalOperatorType operatorType = EquationMathematicalOperatorType.NarySummation;
            textBox.Text += $"\nSelected operator via enum: {operatorType} ({(char)0x2211})";

            // Save the result
            workbook.Save("EquationMathematicalOperatorTypeDemo.xlsx");
        }
    }
}

See Also