Пример #1
0
		/// <summary>
		/// Constructor
		/// </summary>
		/// <param name="p_Mode"></param>
		/// <param name="p_ImageFullPath">The path to write embedded images files</param>
		/// <param name="p_ImageRelativePath">The path used in the HTML source. If you save the images in the same path of the HTML file you can leave this path empty.</param>
		/// <param name="p_HtmlStream">The stream to write</param>
		public HTML(ExportHTMLMode p_Mode, string p_ImageFullPath , string p_ImageRelativePath, System.IO.Stream p_HtmlStream)
		{
			m_Mode = p_Mode;
			m_Stream = p_HtmlStream;
			m_ImageFullPath = p_ImageFullPath;
			m_ImageRelativePath = p_ImageRelativePath;
		}
Пример #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="p_Mode"></param>
 /// <param name="p_ImageFullPath">The path to write embedded images files</param>
 /// <param name="p_ImageRelativePath">The path used in the HTML source. If you save the images in the same path of the HTML file you can leave this path empty.</param>
 /// <param name="p_HtmlStream">The stream to write</param>
 public HTML(ExportHTMLMode p_Mode, string p_ImageFullPath, string p_ImageRelativePath, System.IO.Stream p_HtmlStream)
 {
     m_Mode              = p_Mode;
     m_Stream            = p_HtmlStream;
     m_ImageFullPath     = p_ImageFullPath;
     m_ImageRelativePath = p_ImageRelativePath;
 }