wpf-devexpress-dot-xpf-dot-scheduling-dot-visual-dot-fasttextblock.md
Gets or sets a string for display. This is a dependency property.
Namespace : DevExpress.Xpf.Scheduling.Visual
Assembly : DevExpress.Xpf.Scheduling.v25.2.dll
NuGet Package : DevExpress.Wpf.Scheduling
public string Text { get; set; }
Public Property Text As String
| Type | Description |
|---|---|
| String |
A String for display.
|
The FastTextBlock.StringFormat format string can be specified to change the text before display.
The FastTextBlock.Text property has the display priority over the FastTextBlock.ObjectToString value.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Text property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
wpf-scheduler-customize-appointment-appearance/CS/CustomizeAppointmentExample/MainWindow.xaml#L39
<StackPanel>
<dxschv:FastTextBlock Text="{Binding Appointment.CustomFields[Note]}" FontWeight="Normal" Foreground="Red"/>
<dxschv:AppointmentDescriptionPresenter FontWeight="Normal" Margin="0,1,0,0" WordWrap="True"/>
See Also