共用方式為


XmlMappedRange.CurrentRegion 屬性

取得 Range 物件,表示目前的區域。

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

語法

'宣告
ReadOnly Property CurrentRegion As Range
Range CurrentRegion { get; }

屬性值

型別:Microsoft.Office.Interop.Excel.Range
Range 物件,表示目前的區域。

備註

目前區域是任何空白列或空白欄組合所繫結的範圍。

這個屬性無法在受保護的工作表中使用。

範例

下列程式碼範例使用 CurrentRegion 屬性將 XmlMappedRange 內部區域的色彩設為綠色。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange

Private Sub ColorCurrentRegion()
    ' Set the color of the region to the RGB value for green.
    Me.CustomerLastNameCell.CurrentRegion.Interior.Color = &HFF00
End Sub
private void ColorCurrentRegion()
{
    // Set the color of the region to the RGB value for green.
    this.CustomerLastNameCell.CurrentRegion.Interior.Color = 0xFF00;
}

.NET Framework 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間