pygplates.XsString¶
-
class
pygplates.XsString¶ Bases:
pygplates.PropertyValueA property value that represents a string. The ‘Xs’ prefix is there since this type of property value is associated with the XML Schema Instance Namespace.
-
__init__(string)¶ Create a string property value from a string.
Parameters: string (string) – the string string_property = pygplates.XsString(string)
Methods
__init__(string)Create a string property value from a string. accept_visitor(visitor)Accept a property value visitor so that it can visit this property value. clone()Create a duplicate of this property value (derived) instance, including a recursive copy of any nested property values that this instance might contain. get_geometry()Extracts the geometryif this property value contains a geometry.get_string()Returns the string. get_value([time=0])Extracts the value, of this possibly time-dependent property value, at the reconstruction time. set_string(string)Sets the string. -
get_string()¶ Returns the string.
Return type: string
-
set_string(string)¶ Sets the string.
Parameters: string (string) – the string
-