Range.Columns Property

Definition

Returns a Range object that represents the columns in the specified range.

public:
 property Microsoft::Office::Interop::Excel::Range ^ Columns { Microsoft::Office::Interop::Excel::Range ^ get(); };
public Microsoft.Office.Interop.Excel.Range Columns { get; }
Public ReadOnly Property Columns As Range

Property Value

Remarks

When applied to a Range object that's a multiple-area selection, this property returns columns from only the first area of the range. For example, if the Range object has two areas — A1:B2 and C3:D4 — the Count property returns 2, not 4. To use this property on a range that may contain a multiple-area selection, test the Count property of the Areas object to determine whether the range contains more than one area. If it does, loop over each area in the range.

Applies to