Use of quotes?

I just want to know if it is possible to use single en double quotes in the excell converter. Because we need to send product names and details like this :

product 1 "type Test"
or
Product 2 “Stand” with 230m2 'voorschot’

Will it give problems??

Thx,
Tim

Hi Tim,

Aspose.Excel supports single and double quotes without any problems.

You can try this:

[C#]
cells[“A1”].PutValue(“product1”);
cells[“B1”].PutValue("“Type Test”");
cells[“A2”].PutValue(“product2”);
cells[“B2”].PutValue("“Stand” with 230m2 ‘voorschot’");

[VB]
cells(“A1”).PutValue(“product1”)
cells[“B1”].PutValue(""“Type Test”"")
cells[“A2”].PutValue(“product2”)
cells[“B2”].PutValue(""“Stand”" with 230m2 ‘voorschot’")