New to Telerik UI for WPFStart a free 30-day trial

ICalendar Property object.

Definition

Namespace:Telerik.Windows.Controls.ScheduleView.ICalendar

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

C#
public class CalProperty : IEquatable<CalProperty>

Inheritance: objectCalProperty

Implements: IEquatable<CalProperty>

Constructors

Initializes a new instance of the CalProperty class.

C#
public CalProperty(string name, string value)
Parameters:namestring

The name.

valuestring

The value.

Properties

Gets or sets the property name.

C#
public string Name { get; }
Property Value:

The name.

Gets or sets the parameters.

C#
public Dictionary<string, string> Parameters { get; }
Property Value:

The parameters.

Gets the string with the specified key.

C#
public string this[string key] { get; }
Parameters:keystring

Gets or sets the value.

C#
public string Value { get; }
Property Value:

The value.

Methods

Indicates whether the current object is equal to another object of the same type.

C#
public bool Equals(CalProperty other)
Parameters:otherCalProperty

An object to compare with this object.

Returns:

bool

True if the current object is equal to the other parameter; otherwise, false.

Implements: IEquatable<CalProperty>.Equals(CalProperty)

Returns a string that represents the current object.

C#
public override string ToString()
Returns:

string

A string that represents the current object.

Overrides: object.ToString()

Extension Methods