xml as a property of my class

Broken Rose

New Member
I have a class has some properties and one of that properties want to get or set XML text, something like this:\[code\]<?xml version="1.0" encoding="utf-8"?><Root> <SaveCode>QuiddityVer</SaveCode> <IsMainProject>fals</IsMainProject> <DesignerItems> <DesignerItem> <Quiddity>Play</Quiddity> <Name>Node_Play1</Name> <LoopBodyInDesignerCanvas /> </DesignerItem> </Root>\[/code\]what is the proper Variable type for set and get this xml expresion?and my property of my class is something like this:\[code\]privte String _myxmlExpresion;public String myxmlExpresion { get { return _myxmlExpresion; } set { _myxmlExpresion= value; } }\[/code\]my project is multiTab, and each of that Tabs has DesignerItems to show some nodes in it(some thing like Visual DialPlan, or Visual VXML Designer) and some node has property that is open a new tab when I click it, and I save and open this tabs in XML file,but here I dont want this new tab to extra xml file, I want to save it in my property.
 
Back
Top