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