Integral
Содержание
[
Скрывать
]Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)
Принимает интеграл
public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit,
IMathElement upperLimit, MathLimitLocations limitLocations)
Параметр | Тип | Описание |
---|---|---|
integralType | MathIntegralTypes | Тип интеграла |
lowerLimit | IMathElement | Нижний предел интеграла |
upperLimit | IMathElement | Верхний предел интеграла |
limitLocations | MathLimitLocations | местоположение пределов |
Возвращаемое значение
Новый экземпляр типаIMathNaryOperator
Примеры
Пример:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathElement lowerLimit = new MathematicalText("1");
IMathElement upperLimit = new MathematicalText("2");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, lowerLimit, upperLimit, MathLimitLocations.UnderOver);
Смотрите также
- interface IMathNaryOperator
- enum MathIntegralTypes
- enum MathLimitLocations
- interface IMathElement
- пространство имен Aspose.Slides.MathText
- сборка Aspose.Slides
Integral(MathIntegralTypes, IMathElement, IMathElement)
Принимает интеграл
public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit,
IMathElement upperLimit)
Параметр | Тип | Описание |
---|---|---|
integralType | MathIntegralTypes | Тип интеграла |
lowerLimit | IMathElement | Нижний предел интеграла |
upperLimit | IMathElement | Верхний предел интеграла |
Возвращаемое значение
Новый экземпляр типаIMathNaryOperator
Примеры
Пример:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathElement lowerLimit = new MathematicalText("1");
IMathElement upperLimit = new MathematicalText("2");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, lowerLimit, upperLimit, MathLimitLocations.UnderOver);
Смотрите также
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- пространство имен Aspose.Slides.MathText
- сборка Aspose.Slides
Integral(MathIntegralTypes)
Берет интеграл без ограничений
public IMathNaryOperator Integral(MathIntegralTypes integralType)
Параметр | Тип | Описание |
---|---|---|
integralType | MathIntegralTypes | Тип интеграла |
Возвращаемое значение
Новый экземпляр типаIMathNaryOperator
Примеры
Пример:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Contour);
Смотрите также
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- пространство имен Aspose.Slides.MathText
- сборка Aspose.Slides
Integral(MathIntegralTypes, string, string, MathLimitLocations)
Принимает интеграл
public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit,
string upperLimit, MathLimitLocations limitLocations)
Параметр | Тип | Описание |
---|---|---|
integralType | MathIntegralTypes | Тип интеграла |
lowerLimit | String | Нижний предел интеграла |
upperLimit | String | Верхний предел интеграла |
limitLocations | MathLimitLocations | местоположение пределов |
Возвращаемое значение
Новый экземпляр типаIMathNaryOperator
Примеры
Пример:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5", MathLimitLocations.UnderOver);
Смотрите также
- interface IMathNaryOperator
- enum MathIntegralTypes
- enum MathLimitLocations
- interface IMathElement
- пространство имен Aspose.Slides.MathText
- сборка Aspose.Slides
Integral(MathIntegralTypes, string, string)
Принимает интеграл
public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit,
string upperLimit)
Параметр | Тип | Описание |
---|---|---|
integralType | MathIntegralTypes | Тип интеграла |
lowerLimit | String | Нижний предел интеграла |
upperLimit | String | Верхний предел интеграла |
Возвращаемое значение
Новый экземпляр типаIMathNaryOperator
Примеры
Пример:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5");
Смотрите также
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- пространство имен Aspose.Slides.MathText
- сборка Aspose.Slides