Version: Aspose Cells 8.6.0
I’m facing the following problem, I’m trying to assign a ‘start’ property to a ordered list, like the next snippet code:
text : "
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Cell cell //We’re supposing it’s initialized and working fine.
cell.setHtmlString(text);
Actual behavior:
It’s not obeying the ‘start’ tag for the numerated list. It continues the list from 1 as starting value.
Aspose.Cells.Cell [ B2; ValueType : IsString; Value :
1. 1
2. 2
3. 3
4. 4
5. 5
6. 6
7. 7
8. 8
9. 9
10. 10 ]
Expected behavior:
The numerated list must start at 2 since it’s specified in the string.
Aspose.Cells.Cell [ B2; ValueType : IsString; Value :
2. 1
3. 2
4. 3
5. 4
6. 5
7. 6
8. 7
9. 8
10. 9
11. 10 ]
Any workaround? Thanks!