Remarks
The property returns null when the text selection contains multiple paragraphs with different bottom distances.
The WPF.
Gets or sets a bottom paragraph distance, in twips, at the current input position. If text is selected, the property specifies the bottom distance of the whole selected text.
public int? BottomDistance { get; set; }
Public Property BottomDistance() As Nullable(Of Integer)
The following XAML example binds the Bottom
?
xmlns:tx="clr-namespace:TXTextControl.WPF;assembly=TXTextControl.WPF"
?
<Window.Resources>
<tx:MeasureConverter Unit="Centimeter" x:Key="twipsConv" />
</Window.Resources>
?
<TextBox
Text="{Binding
ElementName=textControl1,
Path=InputFormat.BottomDistance,
Converter={StaticResource twipsConv},
Mode=TwoWay}" />
The property returns null when the text selection contains multiple paragraphs with different bottom distances.
The WPF.