kCura.WinEDDS.Exporters.HtmlCellFormatter
namespace kCura.WinEDDS.Exporters
{
public class HtmlCellFormatter : ILoadFileCellFormatter
{
public string RowPrefix { get; }
public string RowSuffix { get; }
public HtmlCellFormatter(ExportFile settings);
public string TransformToCell(string contents);
public string CreateImageCell(ObjectExportInfo artifact);
public string CreateNativeCell(string location, ObjectExportInfo artifact);
public string CreatePdfCell(string location, ObjectExportInfo artifact);
}
}