Gets or sets a value specifying whether text is superscript at the current input position. If text is selected, the property specifies this attribute for the whole selected text.

Syntax

public bool? Superscript { get; set; }
Public Property Superscript() As Nullable(Of Boolean)

Examples

The following XAML example binds the Superscript property to a toggle button:

<ToggleButton
    Height="20"
    Name="buttonSuperscript"
    IsChecked="{Binding ElementName=textControl1, Path=InputFormat.Superscript, Mode=TwoWay}">
    Superscript</ToggleButton>

Remarks

The property returns null when the text selection contains multiple characters with mixed setting.