SetSuperscript

SetSuperscript(IMathElement)

Crea superíndice

public IMathSuperscriptElement SetSuperscript(IMathElement superscript)
ParámetroEscribeDescripción
superscriptIMathElementSuperíndice (índice superior a la derecha)

Valor_devuelto

Nuevo elemento matemático de tipoIMathSuperscriptElement

Ejemplos

Ejemplo:

[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("4");
IMathSuperscriptElement superscript = element.SetSuperscript(index);

Ver también


SetSuperscript(string)

Crea superíndice

public IMathSuperscriptElement SetSuperscript(string superscript)
ParámetroEscribeDescripción
superscriptStringSuperíndice (índice superior a la derecha)

Valor_devuelto

Nuevo elemento matemático de tipoIMathSuperscriptElement

Ejemplos

Ejemplo:

[C#]
IMathElement element = new MathematicalText("N");
IMathSuperscriptElement superscript = element.SetSuperscript("4");

Ver también