SaveAsXML references
Hi All,
If it is in wrong community, please move to correct one.
I am working on SaveAsXML by modifying an xml file based on \plug_ins\SaveAsXML\MappingTables\XML-1-0.xml.
I need to extract extra information in Table Area.
I am able to extract scope, colspan/rowspan, ID in TD/TH element. I have used following codes.
<Proc-var Pdf-var="ID" Owner="Structelem" Type="String" Has-enum="No-enum" Inherit="Not-inherited" Default="" Condition="Has-value">
<Emit-string SP-Before="No"> ID="</Emit-string>
<Proc-string/>
<Emit-string>"</Emit-string>
</Proc-var>
<Proc-var Pdf-var="ColSpan" Owner="Table" Type="Int32" Inherit="Inheritable" Condition="Has-value">
<Emit-string SP-Before="Yes">colspan="</Emit-string>
<Proc-integer/>
<Emit-string>"</Emit-string>
</Proc-var>
<Proc-var Pdf-var="RowSpan" Owner="Table" Type="Int32" Inherit="Inheritable" Condition="Has-value">
<Emit-string SP-Before="Yes">rowspan="</Emit-string>
<Proc-integer/>
<Emit-string>"</Emit-string>
</Proc-var>
<Proc-var Pdf-var="Scope" Owner="Table" Type="String" Inherit="Inheritable" Condition="Has-value">
<Emit-string SP-Before="Yes">scope="</Emit-string>
<Proc-string/>
<Emit-string>"</Emit-string>
</Proc-var>
However, I also need to extract Headers of TD element (some users use word Associate IDs of cell, callas pdfgoHTML a free plugin also export headers, but I need my own mapping also). I tried but I am not able to get by using following code.
<Proc-var Pdf-var="Headers" Owner="Table" Type="String" Inherit="Not-inherited" Condition="Has-value">
<Emit-string SP-Before="Yes">headers="</Emit-string>
<Proc-string/>
<Emit-string>"</Emit-string>
</Proc-var>
Can anyone help me in this? I also need how to extract Expansion text(content tab) given for any tag.
Thanks,
Vikash Gupta