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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。