data property

CustomXmlPart.data property

Gets or sets the XML content of this Custom XML Data Storage Part.

@property
def data(self) -> bytes:
    ...

@data.setter
def data(self, value: bytes):
    ...

Remarks

The default value is an empty byte array. The value cannot be None.

See Also