NamedRange.CurrentRegion 属性
获取一个表示当前区域的 Microsoft.Office.Interop.Excel.Range。
命名空间: Microsoft.Office.Tools.Excel
程序集: Microsoft.Office.Tools.Excel(在 Microsoft.Office.Tools.Excel.dll 中)
语法
声明
ReadOnly Property CurrentRegion As Range
Get
Range CurrentRegion { get; }
属性值
类型:Microsoft.Office.Interop.Excel.Range
一个表示当前区域的 Microsoft.Office.Interop.Excel.Range。
备注
当前的区域是由任意组合的空行和空列所包围的范围。
此属性不能在受保护的工作表上使用。
示例
下面的代码示例创建一个 NamedRange 并用值 123 填充它。 然后,它将当前区域(由空行和空列所包围的区域)设为绿色。
此示例针对的是文档级自定义项。
Private currentRegionRange As Microsoft.Office.Tools.Excel.NamedRange
Private Sub ColorCurrentRegion()
currentRegionRange = Me.Controls.AddNamedRange( _
Me.Range("C3", "E5"), "currentRegionRange")
currentRegionRange.Value2 = "123"
' Set the color of the region to the RGB value for green.
Me.currentRegionRange.CurrentRegion.Interior.Color = &HFF00
End Sub
Microsoft.Office.Tools.Excel.NamedRange currentRegionRange;
private void ColorCurrentRegion()
{
currentRegionRange = this.Controls.AddNamedRange(
this.Range["C3", "E5"], "currentRegionRange");
currentRegionRange.Value2 = "123";
// Set the color of the region to the RGB value for green.
this.currentRegionRange.CurrentRegion.Interior.Color = 0xFF00;
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。