Relativity.DataExchange.Export.HtmlCellFormatter
namespace Relativity.DataExchange.Export
{
public class HtmlCellFormatter : ILoadFileCellFormatter
{
public string RowPrefix { get; }
public string RowSuffix { get; }
public HtmlCellFormatter(ExportFile settings, IFilePathTransformer filePathTransformer);
public string TransformToCell(string contents);
public string CreateImageCell(ObjectExportInfo artifact);
public string CreateNativeCell(string location, ObjectExportInfo artifact);
public string CreatePdfCell(string location, ObjectExportInfo artifact);
}
}