Results
Posted: 14 Nov 2016, 10:14
Hello,
I have a question about result of XML.
I get 'handle value' after using 'GetAttribValue(doc,nodeL3, attInst) like below source.
My source is
string handle1 = GetAttribValue(doc, nodeL6, "Handle");//"cadsofttools/Results/Result/Output/Created";
If I add 2 objects(ex, block and text), I will get 2 handles like below result.
<?xml version="1.0" encoding="UTF-8" standalone="no"?><cadsofttools version="2.0">
<Results>
<Result Instruction="add">
<Output>
<Created Handle="$2E" Position="71,1" />
<Created Handle="$2F" Position="167,1" />
</Output>
</Result>
<Result Instruction="invalidate" />
</Results></cadsofttools>
Then, How to get each handle of 2 objects as C# source?
(I tried to to
string handle2 = GetAttribValue(doc, nodeL7, "Handle");//"cadsofttools/Results/Result/Output/Created/Created";
but, I couldn't get second handle value.)
Let me know, please.
I have a question about result of XML.
I get 'handle value' after using 'GetAttribValue(doc,nodeL3, attInst) like below source.
My source is
string handle1 = GetAttribValue(doc, nodeL6, "Handle");//"cadsofttools/Results/Result/Output/Created";
If I add 2 objects(ex, block and text), I will get 2 handles like below result.
<?xml version="1.0" encoding="UTF-8" standalone="no"?><cadsofttools version="2.0">
<Results>
<Result Instruction="add">
<Output>
<Created Handle="$2E" Position="71,1" />
<Created Handle="$2F" Position="167,1" />
</Output>
</Result>
<Result Instruction="invalidate" />
</Results></cadsofttools>
Then, How to get each handle of 2 objects as C# source?
(I tried to to
string handle2 = GetAttribValue(doc, nodeL7, "Handle");//"cadsofttools/Results/Result/Output/Created/Created";
but, I couldn't get second handle value.)
Let me know, please.