ListColumn.GetDataStyle

ListColumn.GetDataStyle method

Gets the style of the data in this column of the table.

public Style GetDataStyle()

Examples

using System;
using Aspose.Cells;
using Aspose.Cells.Drawing;

namespace AsposeCellsExamples
{
    public class ListColumnMethodGetDataStyleDemo
    {
        public static void Run()
        {
            // Create a new workbook
            Workbook workbook = new Workbook();
            
            // Access first worksheet
            Worksheet worksheet = workbook.Worksheets[0];
            
            // Add sample data to cells
            worksheet.Cells["A1"].PutValue("Header");
            worksheet.Cells["A2"].PutValue("Data1");
            worksheet.Cells["A3"].PutValue("Data2");
            
            // Create a list object (table)
            int index = worksheet.ListObjects.Add(0, 0, 2, 0, true);
            Aspose.Cells.Tables.ListObject table = worksheet.ListObjects[index];
            
            // Get style from first list column
            Style style = table.ListColumns[0].GetDataStyle();
            
            // Modify the style
            style.Pattern = BackgroundType.Solid;
            style.BackgroundColor = System.Drawing.Color.Red;
            
            // Apply the modified style back to the column
            table.ListColumns[0].SetDataStyle(style);
            
            // Save the workbook
            workbook.Save("output.xlsx");
        }
    }
}

See Also