Table of Contents

TCustomXmlPart.TCustomXmlPart Constructor

Overloads

TCustomXmlPart.TCustomXmlPart

Creates a new TCustomXmlPart. It will set the Id to a random GUID.

Syntax

Namespace: FlexCel.Core

public TCustomXmlPart()

See also

TCustomXmlPart.TCustomXmlPart(String, String[])

Creates a new TCustomXmlParts with a random Id and the given xml and schemas.

Syntax

Namespace: FlexCel.Core

public TCustomXmlPart(String aXml, String[] aSchemas)

Parameters

<-> Parameter Type Description
aXml String Xml of the custom part.
aSchemas String[] List of schemas for the custom part. Leave it null or empty if there a no schemas.
Note that the array will be copied, so you can modify it after setting it and it won't change the Xml part.

See also

TCustomXmlPart.TCustomXmlPart(Guid, String, String[])

Creates a new TCustomXmlParts the given Id, xml and schemas.

Syntax

Namespace: FlexCel.Core

public TCustomXmlPart(Guid aId, String aXml, String[] aSchemas)

Parameters

<-> Parameter Type Description
aId Guid Guid for the part. Make sure this is unique.
aXml String Xml of the custom part.
aSchemas String[] List of schemas for the custom part. Leave it null or empty if there a no schemas.
Note that the array will be copied, so you can modify it after setting it and it won't change the Xml part.

See also