Exemplo n.º 1
0
        public CommandNote AddNote(CommandNoteType type, string text)
        {
            CommandNote cn = new CommandNote(OwnerDocument);

            AddChild(cn);

            cn.Type      = type;
            cn.InnerText = text;

            return(cn);
        }
Exemplo n.º 2
0
        public CommandNote AddNote(CommandNoteType type, string text)
        {
            CommandNote cn = new CommandNote (OwnerDocument);
            AddChild (cn);

            cn.Type = type;
            cn.InnerText = text;

            return cn;
        }