Exemplo n.º 1
0
 protected override void OnSave(XmlNode node)
 {
     XmlUtil.SetNameAttribute(node, _name);
     if (_typePointer != null)
     {
         XmlSerializer.XmlObjectWriter xw = this.root.Writer as XmlSerializer.XmlObjectWriter;
         if (xw != null)
         {
             XmlNode nd = node.OwnerDocument.CreateElement(XmlTags.XML_ObjProperty);
             node.AppendChild(nd);
             xw.WriteObjectToNode(nd, _typePointer);
         }
         else
         {
             throw new DesignerException("Writer not available calling MathNodeField.OnSave");
         }
     }
 }
 public bool Edit(XmlSerializer.XmlObjectWriter writer, ProgElements.IMethod context, System.Windows.Forms.Form caller, bool isNewAction)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public void UpdateXmlNode(XmlSerializer.XmlObjectWriter writer)
 {
 }
Exemplo n.º 4
0
 public void OnBeforeWrite(XmlSerializer.XmlObjectWriter writer, System.Xml.XmlNode node)
 {
 }
Exemplo n.º 5
0
 public bool Edit(XmlSerializer.XmlObjectWriter writer, ProgElements.IMethod context, System.Windows.Forms.Form caller, bool isNewAction)
 {
     return(false);
 }
Exemplo n.º 6
0
 public void UpdateXmlNode(XmlSerializer.XmlObjectWriter writer)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
 public void OnBeforeWrite(XmlSerializer.XmlObjectWriter writer, System.Xml.XmlNode node)
 {
     throw new NotImplementedException();
 }