ECal.ComponentOrganizer¶
Fields¶
None
Methods¶
class |
|
class |
|
class |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Details¶
- class ECal.ComponentOrganizer¶
Describes an organizer. Use the functions below to work with it.
- classmethod new()¶
- Returns:
a newly allocated
ECal.ComponentOrganizer
- Return type:
Creates a new empty
ECal.ComponentOrganizer
structure. Free it with e_cal_component_organizer_free(), when no longer needed.New in version 3.34.
- classmethod new_from_property(property)¶
- Parameters:
property (
ICalGLib.Property
) – anICalGLib.Property
of kindICalGLib.PropertyKind.ORGANIZER_PROPERTY
- Returns:
a newly allocated
ECal.ComponentOrganizer
- Return type:
Creates a new
ECal.ComponentOrganizer
, filled with values from property, which should be of kindICalGLib.PropertyKind.ORGANIZER_PROPERTY
. The function returnsNone
when it is not of the expected kind. Free the structure with e_cal_component_organizer_free(), when no longer needed.New in version 3.34.
- classmethod new_full(value, sentby, cn, language)¶
- Parameters:
- Returns:
a newly allocated
ECal.ComponentOrganizer
- Return type:
Creates a new
ECal.ComponentOrganizer
structure, with all members filled with given values from the parameters. TheNone
and empty strings are treated as unset the value. Free the structure with e_cal_component_organizer_free(), when no longer needed.New in version 3.34.
- copy()¶
- Returns:
a newly allocated copy of self
- Return type:
Returns a newly allocated copy of self, which should be freed with e_cal_component_organizer_free(), when no longer needed.
New in version 3.34.
- fill_property(property)¶
- Parameters:
property (
ICalGLib.Property
) – anICalGLib.Property
- Returns:
- Return type:
property:
ICalGLib.Property
Fill property with information from self. The property should be of kind
ICalGLib.PropertyKind.ORGANIZER_PROPERTY
.New in version 3.34.
- get_as_property()¶
- Returns:
a newly created
ICalGLib.Property
, containing information from the self.- Return type:
Converts information stored in self into an
ICalGLib.Property
ofICalGLib.PropertyKind.ORGANIZER_PROPERTY
kind. The caller is responsible to free the returned object withGObject.Object.unref
(), when no longer needed.New in version 3.34.
- get_cn()¶
-
New in version 3.34.
- get_parameter_bag()¶
- Returns:
an
ECal.ComponentParameterBag
with additional parameters stored with the organizer property, other than those accessible with the other functions of the self.- Return type:
New in version 3.34.
- get_value()¶
-
New in version 3.34.
- set_cn(cn)¶
-
Set the self common name (cn) parameter. The
None
and empty strings are treated as unset the value.New in version 3.34.
- set_from_property(property)¶
- Parameters:
property (
ICalGLib.Property
) – anICalGLib.Property
Fill the self structure with the information from the property, which should be of
ICalGLib.PropertyKind.ORGANIZER_PROPERTY
kind.New in version 3.34.
- set_language(language)¶
-
Set the self language parameter. The
None
and empty strings are treated as unset the value.New in version 3.34.