Xceed Workbooks for .NET v2.0 Documentation
ColumnRange Class
Members  Example 


Xceed.Workbooks.NET Assembly > Xceed.Workbooks.NET Namespace : ColumnRange Class
Defines a ColumnRange, which is a range of consecutives Columns. It derives from LinearRange.
Syntax
Example
using( var workbook = Workbook.Create( "ColumnRange.xlsx" ) ) 
  { 
    // Gets the first Worksheet; a Workbook always contains at least 1 Worksheet. 
    var worksheet = workbook.Worksheets[ 0 ]; 

    // Gets the Columns B, C and D. 
    var columnRange = worksheet.Columns[ "B", "D" ]; 

    // Sets the columnRange's Background color to yellow. 
    columnRange.Style.Fill.BackgroundColor = Color.Yellow; 
 
    // Saves Workbook to disk; 
    workbook.Save(); 
  }
Inheritance Hierarchy

System.Object
   Xceed.Workbooks.NET.WorkbookElement
      Xceed.Workbooks.NET.WorksheetElement
         Xceed.Workbooks.NET.StyledWorksheetElement
            Xceed.Workbooks.NET.StyledRange<T>
               Xceed.Workbooks.NET.LinearRange<T>
                  Xceed.Workbooks.NET.ColumnRange

Requirements

Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ColumnRange Members
Xceed.Workbooks.NET Namespace