value_format Property

Format of data returned or set.

Syntax

def get_value_format() -> int: ...
def set_value_format(value: int) -> None: ...

value_format = property(get_value_format, set_value_format)

Default Value

1

Remarks

The value_format property specifies the format of the data set or received into/from value properties such as x_text, return_value, and the params properties.

The following are the possible values:

vfText (0)Textual data. Any '<', '>', and '&' characters are escaped to '&lt;', '&gt;', and '&amp;'.
vfXML (1)XML data, not including the enclosing element tags. No escaping is performed for the XML data, but element data (such as element attributes) will be escaped.
vfFullXML (2)Same as vfXML, but including the enclosing element. No escaping is performed for both the XML data and the XML element.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 Python Edition - Version 20.0 [Build 8307]