Esempio n. 1
0
 /// <summary>
 /// Insert an element
 /// </summary>
 /// <param name="method"></param>
 /// <param name="element"></param>
 public void InsertAdjacentElement(InsertWhere method, IElement element)
 {
     if (element == null)
     {
         return;
     }
     peer2.InsertAdjacentElement(method.ToString(), element.GetBaseElement());
 }
Esempio n. 2
0
 /// <summary>
 /// Inserts the given text into the element at the specified location.
 /// </summary>
 /// <param name="method">Specifies where to insert the text.</param>
 /// <param name="text"></param>
 void IElement.InsertAdjacentText(InsertWhere method, string text)
 {
     throw new NotImplementedException("");
 }
Esempio n. 3
0
 /// <summary>
 /// Inserts the given HTML text into the element at the location.
 /// </summary>
 /// <param name="method"></param>
 /// <param name="html"></param>
 void IElement.InsertAdjacentHtml(InsertWhere method, string html)
 {
     throw new NotImplementedException("");
 }
Esempio n. 4
0
 /// <summary>
 /// Inserts an element at the specified location.
 /// </summary>
 /// <param name="method">Specifies where to insert the HTML element.</param>
 /// <param name="element">Element to be inserted adjacent to the object.</param>
 void IElement.InsertAdjacentElement(InsertWhere method, IElement element)
 {
     throw new NotImplementedException("");
 }
Esempio n. 5
0
 /// <summary>
 /// Insert text.
 /// </summary>
 /// <param name="method"></param>
 /// <param name="text"></param>
 public void InsertAdjacentText(InsertWhere method, string text)
 {
     peer.InsertAdjacentText(method.ToString(), text);
 }
Esempio n. 6
0
 /// <summary>
 /// Insert Html
 /// </summary>
 /// <param name="method"></param>
 /// <param name="html"></param>
 public void InsertAdjacentHtml(InsertWhere method, string html)
 {
     peer.InsertAdjacentHTML(method.ToString(), html);
 }