ClassCalObject
Provides class for iCal objects.
Definition
Namespace:Telerik.Windows.Controls.ScheduleView.ICalendar
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
public class CalObject : IEquatable<CalObject>
Inheritance: objectCalObject
Implements:
Constructors
CalObject(string)
Initializes a new instance of the CalObject class.
Properties
Children
Gets the children objects.
Declaration
public Collection<CalObject> Children { get; }
Property Value
The children.
Name
Gets the name.
Properties
Gets the properties.
Declaration
public Collection<CalProperty> Properties { get; }
Property Value
The properties.
this[string]
Gets the CalProperty with the specified property name.
Declaration
public CalProperty this[string propertyName] { get; }
Parameters
propertyName
Property Value
Methods
AddChildren(string)
Adds the children.
AddProperty(string, string)
Adds the property.
Declaration
public CalProperty AddProperty(string key, string value)
Parameters
key
The key.
value
The value.
Returns
AddProperty(string, string, string, string)
Adds the property.
Declaration
public CalProperty AddProperty(string key, string value, string parameterKey, string parameterValue)
Parameters
key
The key.
value
The value.
parameterKey
The parameter key.
parameterValue
The parameter value.
Returns
ContainsProperty(string)
Determines whether the specified name contains property.
Equals(CalObject)
Indicates whether the current object is equal to another object of the same type.
GetChildrenByName(string)
Gets the child CalObject by name.