AODL.Document.Content.Text.Footnote.GetHtml C# (CSharp) Method

GetHtml() public method

Return the content as Html string
public GetHtml ( ) : string
return string
		public string GetHtml()
		{
			string html			= "<sup>(";
			html				+= this.Id;
			html				+= ". "+this.Text;
			html				+= ")</sup>";

			return html;
		}