Class VisibleRange
Namespace: Telerik.Windows.Controls.Scheduling
Assembly: Telerik.Windows.Scheduling.Core.dll
Syntax
public class VisibleRange : PlatformIndependentFreezable, INotifyPropertyChanged, IDateRange
Constructors
VisibleRange()
VisibleRange(DateTime, DateTime)
Initializes a new instance of the VisibleRange class.
Declaration
public VisibleRange(DateTime start, DateTime end)
Parameters
System.DateTime
start
The start. |
System.DateTime
end
The end. |
Fields
EndProperty
Identifies the VisibleRangeEnd dependency property.
Declaration
public static readonly DependencyProperty EndProperty
Field Value
System.Windows.DependencyProperty
|
StartProperty
Identifies the VisibleRangeStart dependency property.
Declaration
public static readonly DependencyProperty StartProperty
Field Value
System.Windows.DependencyProperty
|
Properties
End
Gets or sets the End of the range. This is a dependency property.
Declaration
public DateTime End { get; set; }
Property Value
System.DateTime
|
Implements
Start
Gets or sets the Start of the range. This is a dependency property.
Declaration
public DateTime Start { get; set; }
Property Value
System.DateTime
|
Implements
Methods
CreateInstanceOverride()
When implemented in a derived class, creates a new instance of the Telerik.Windows.Core.PlatformIndependantFreezable derived class.
Declaration
protected override PlatformIndependentFreezable CreateInstanceOverride()
Returns
PlatformIndependentFreezable
The new instance. |
Overrides
OnPropertyChanged(String)
Raises the PropertyChanged event. This method is called when a property of this control is changed.
Declaration
protected virtual void OnPropertyChanged(string propertyName)
Parameters
System.String
propertyName
The name of the property that was changed. |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|