IMathAccent

All Implemented Interfaces: com.aspose.slides.IMathElement

public interface IMathAccent extends IMathElement

Specifies the accent function, consisting of a base and a combining diacritical mark Example: \ud835\udc4e\u0301


Example:
 
 IMathAccent accent = new MathematicalText("x").accent('~');

Methods

MethodDescription
getBase()The argument to which the accent was applied
getCharacter()Accent Character The value should be within the range of (U+0300\u2013U+036F) or(U+20D0\u2013U+20EF) Default value: Combining Circumflex Accent (U+0302)
setCharacter(char value)Accent Character The value should be within the range of (U+0300\u2013U+036F) or(U+20D0\u2013U+20EF) Default value: Combining Circumflex Accent (U+0302)

getBase()

public abstract IMathElement getBase()

The argument to which the accent was applied


Example:
 
 IMathAccent accent = new MathematicalText("x").accent('~');
 IMathElement base = accent.getBase();

Returns: IMathElement

getCharacter()

public abstract char getCharacter()

Accent Character The value should be within the range of (U+0300\u2013U+036F) or(U+20D0\u2013U+20EF) Default value: Combining Circumflex Accent (U+0302)


Example:
 
 IMathAccent accent = new MathematicalText("x").accent('~');
 char ch = accent.getCharacter();

Returns: char

setCharacter(char value)

public abstract void setCharacter(char value)

Accent Character The value should be within the range of (U+0300\u2013U+036F) or(U+20D0\u2013U+20EF) Default value: Combining Circumflex Accent (U+0302)


Example:
 
 IMathAccent accent = new MathematicalText("x").accent('~');
 char ch = accent.getCharacter();

Parameters:

ParameterTypeDescription
valuechar