Some feature request for TemplateMarker in ExcelEngine
if I have a marker class as this
public class Class
{
public DateTime Date { get; set; }
public string PropertyA { get; set; }
public string PropertyB { get; set; }
public static void TestMarkers()
{
Class class1 = new Class()
{
Date = DateTime.Now,
PropertyA = "Prop A",
PropertyB = "Prop B"
};
//ApplyMarker and other stuff
}
}
and template markers like these in cells
- %Class.PropertyA - %Class.PropertyB
- SomePrefixText %Class.PropertyA SomeSuffixText
- %Class.Date;dd MM yyyy
These should convert to
- Prop A - Prop B
- SomePrefixText Prop A SomeSuffixText
- 18 09 2019