AODL.Document.Content.Text.Footnote.GetHtml C# (CSharp) Метод

GetHtml() публичный Метод

Return the content as Html string
public GetHtml ( ) : string
Результат string
		public string GetHtml()
		{
			string html			= "<sup>(";
			html				+= this.Id;
			html				+= ". "+this.Text;
			html				+= ")</sup>";

			return html;
		}