Gets a value indicating whether the recurrence exception icon should be displayed.
Namespace: MindFusion.Scheduling.Wpf
Assembly: MindFusion.Scheduling.Wpf
SyntaxC#
Copy Code
|
|---|
public Visibility RecurrenceExceptionIconVisibility { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property RecurrenceExceptionIconVisibility As Visibility |
A member of the .NET Visibility enumeration.
RemarksThis property returns whether the icon of the recurrence exception should be visible.
ExampleThe following excerpt from the default item template illustrates how to bind to this property in XAML:
XAML
Copy Code
|
|---|
<Image Source="pack://application:,,,/MindFusion.Scheduling.Wpf;component/Resources/RecurrenceEx.png" Visibility="{Binding RecurrenceExceptionIconVisibility}" /> |
See Also