Returns an IRangeColumns interface that represents the entire column (or columns) that contains the specified range.
[Visual Basic] Property ReadOnly EntireColumn As IRangeColumns [C#] IRangeColumns EntireColumn { get; } [C++] __property IRangeColumns* get_EntireColumn(); [JScript] function get EntireColumn() : IRangeColumns
IRangeColumns interface.
This example sets the value of the first cell in the first column that contains the selected range.
[C#]
book.Worksheets[1].Selection.EntireColumn[1, 1].Value = 10;
[Visual Basic]
book.Worksheets(1).Selection.EntireColumn(1, 1).Value = 10
[C++]
book->Worksheets->Item[1]->Selection->EntireColumn->Item[1, 1]->Value = 10;
IRange Interface | NativeExcel Namespace | Selection Property | EntireRow Property | IRangeColumns Interface