LayoutFarm.HtmlBoxes.MyHtmlContainer.GetHtml C# (CSharp) 메소드

GetHtml() 공개 메소드

public GetHtml ( StringBuilder stbuilder ) : void
stbuilder StringBuilder
리턴 void
        public void GetHtml(StringBuilder stbuilder)
        {
            throw new NotSupportedException();
        }
    }

Usage Example

예제 #1
0
 /// <summary>
 /// Get html from the current DOM tree with inline style.
 /// </summary>
 /// <returns>generated html</returns>
 public string GetHtml()
 {
     if (htmlContainer == null)
     {
         return(null);
     }
     else
     {
         System.Text.StringBuilder stbuilder = new System.Text.StringBuilder();
         htmlContainer.GetHtml(stbuilder);
         return(stbuilder.ToString());
     }
 }