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