Create a #ICalProperty of the target type.
Deeply clone a #ICalProperty.
Create a #ICalProperty from a string.
Convert a #ICalProperty to a string representation.
Free a #ICalProperty.
Get the kind of #ICalProperty.
Check whether the native part of #ICalProperty is of the type icalproperty.
Add a #ICalParameter into the #ICalProperty. It behaves like set the copy of the #ICalParameter. Upon completion the native part of #ICalParameter will be set to NULL.
Add the @parameter into the @prop and free the @parameter.
g_return_if_fail(I_CAL_IS_PROPERTY(prop));
g_return_if_fail(I_CAL_IS_PARAMETER(parameter));
i_cal_property_add_parameter(prop, parameter);
g_object_unref(parameter);
Set a #ICalParameter into the #ICalProperty. It behaves like set the copy of the #ICalParameter. Upon completion the native part of #ICalParameter will be set to NULL.
Set the #ICalProperty with the parameter defined by the name and value.
Get the string representation of the target parameter in the #ICalProperty.
Remove the target kind of the parameters in the #ICalProperty.
Remove parameter in the #ICalProperty by name.
Remove the parameter in the #ICalProperty by ref.
Count the parameters in the #ICalProperty.
Get the first #ICalParameter from the parent #ICalProperty.
Get the next #ICalParameter from the parent #ICalProperty.
Set the #ICalProperty with the #ICalValue.
Set the @prop with the @value and unrefs the @value.
g_return_if_fail(I_CAL_IS_PROPERTY(prop));
g_return_if_fail(I_CAL_IS_VALUE(value));
i_cal_property_set_value(prop, value);
g_object_unref(value);
Set the #ICalProperty with the #ICalValue constructed from string.
Get the #ICalValue of #ICalProperty.
Get the string representation of the value in #ICalProperty.
Set the parent property of a value.
Get the parent #ICalProperty of the specified #ICalValue.
Set the parent #ICalProperty of an #ICalParameter.
Get the parent #ICalProperty of the specified #ICalParameter.
Set the name of x property for the #ICalProperty.
Get the name of x property.
Get the property name of #ICalProperty.
Convert the #ICalParameterValue to #ICalValueKind.
Convert the #ICalPropertyKind to #ICalValueKind.
Convert a #ICalValueKind to a #ICalPropertyKind.
Convert the #ICalPropertyKind to a string.
Convert the string to #ICalPropertyKind.
Check whether #ICalPropertyKind is valid.
Convert the string to #ICalPropertyKind.
Convert the #ICalPropertyMethod to string.
Convert the enum to string.
Convert a integer and string into an enum.
Convert the string to #ICalPropertyKind.
Convert the #ICalPropertyStatus to string.
Check whether the enum belongs to the #ICalPropertyKind.