Aspose::Cells::Cells::LinkToXmlMap method

Cells::LinkToXmlMap(const U16String&, int32_t, int32_t, const U16String&) method

Link to a xml map.

void Aspose::Cells::Cells::LinkToXmlMap(const U16String &mapName, int32_t row, int32_t column, const U16String &path)
ParameterTypeDescription
mapNameconst U16String&name of xml map
rowint32_trow of the destination cell
columnint32_tcolumn of the destination cell
pathconst U16String&path of xml element in xml map

Remarks

e.g. A xml map element structure: -RootElement |-Attribute1 |-SubElement |-Attribute2 |-Attribute3 To link “Attribute1”, path is “/RootElement/Attribute1” To link “Attribute2”, path is “/RootElement/SubElement/Attribute2” To link whole “SubElement”, path is “/RootElement/SubElement”

See Also

Cells::LinkToXmlMap(const char16_t*, int32_t, int32_t, const char16_t*) method

Link to a xml map.

void Aspose::Cells::Cells::LinkToXmlMap(const char16_t *mapName, int32_t row, int32_t column, const char16_t *path)
ParameterTypeDescription
mapNameconst char16_t*name of xml map
rowint32_trow of the destination cell
columnint32_tcolumn of the destination cell
pathconst char16_t*path of xml element in xml map

Remarks

e.g. A xml map element structure: -RootElement |-Attribute1 |-SubElement |-Attribute2 |-Attribute3 To link “Attribute1”, path is “/RootElement/Attribute1” To link “Attribute2”, path is “/RootElement/SubElement/Attribute2” To link whole “SubElement”, path is “/RootElement/SubElement”

See Also