MiniExcel icon indicating copy to clipboard operation
MiniExcel copied to clipboard

Image Attribute

Open shps951023 opened this issue 4 years ago • 0 comments

e.g

void Main()
{
	var input = new[] {
		new Demo{Name="Test1",Image="C:\\Test1.png"},
		new Demo{Name="Test2",Image="C:\\Test2.png"}
	}
	MiniExcel.SaveAs(path, input);
}

public class Demo
{
	public string Name { get; set; }
	[ImageUri]
	public string Image { get; set; }
}

image.png

shps951023 avatar Apr 06 '21 09:04 shps951023