Does XlsIO provide support to change the indent level?
Yes, XlsIO provides support to change the indent level. You can change the indent level by using the IndentLevel property of the CellStyle object. Please refer to the following code snippet.
C#
// Text Indent Setting
sheet.Range["B6"].CellStyle.IndentLevel = 6;VB
' Text Indent Setting
sheet.Range("B6").CellStyle.IndentLevel = 6