共用方式為


WorksheetBase.Columns 屬性

取得 Range 物件,該物件表示工作表上的一個或多個欄。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel.v4.0.Utilities (在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)

語法

'宣告
Public ReadOnly Property Columns As Range
public Range Columns { get; }

屬性值

型別:Microsoft.Office.Interop.Excel.Range
Range 物件,該物件表示工作表上的一個或多個欄。

備註

不搭配參數使用時,這個屬性會傳回 Range 物件,其中包含工作表上所有的資料行。

這個屬性可與下列選擇性參數搭配使用,以取得工作表上特定的資料行。如果您使用這個屬性搭配參數,傳回的值會是必須轉型成 Range 的物件。

參數

描述

RowIndex

所要取得的一個或多個資料行索引。

若要取得單一資料行,請將其中一個下列物件傳遞至這個參數:

  • 整數,指定您想要取得之資料行的索引。資料行索引是從 1 開始。

  • 由您想要取得之資料行的字母所組成的字串。

若要設法連續多個資料行,請使用格式 "first column letter:last column letter" 傳遞字串。例如,要取得資料行 A 到 E,傳遞 "A:E"。

注意事項注意事項
這個參數的名稱有些誤導;這個參數會指定您想要取得之資料行 (而不是資料列) 的索引。

ColumnIndex

請勿使用這個參數。如果您嘗試將值傳遞給這個參數,這個屬性會擲回 COMException

範例

下列程式碼範例會使用 Columns 屬性來設定工作表上第一欄中所有儲存格的字型之色彩、名稱、大小和粗細。

這是示範文件層級自訂的範例。若要執行這個程式碼,請將它複製到專案中的其中一個工作表類別。

Private Sub SetFirstColumnFont()
    Dim fillColumn As Excel.Range = TryCast(Me.Columns("A"), Excel.Range)

    With fillColumn.Font
        ' Set the font color to blue (RGB value FF 00 00), and set other font properties.
        .Color = &HFF0000
        .Name = "Arial"
        .Size = 14
        .Bold = False
    End With

    ' Test the changes by writing a value to all the column cells.
    fillColumn.Value2 = "This is a test"
End Sub
private void SetFirstColumnFont()
{
    Excel.Range fillColumn = (Excel.Range)this.Columns["A"];
    Excel.Font columnsFont = fillColumn.Font;

    // Set the font color to blue (RGB value FF 00 00), and set other font properties.
    columnsFont.Color = 0xFF0000;
    columnsFont.Name = "Arial";
    columnsFont.Size = 14;
    columnsFont.Bold = false;

    // Test the changes by writing a value to all the column cells.
    fillColumn.Value2 = "This is a test";
}

.NET Framework 安全性

請參閱

參考

WorksheetBase 類別

Microsoft.Office.Tools.Excel 命名空間