Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets a Microsoft.Office.Interop.Excel.Range that represents the current region.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Syntax
'Declaration
ReadOnly Property CurrentRegion As Range
Range CurrentRegion { get; }
Property Value
Type: Microsoft.Office.Interop.Excel.Range
A Microsoft.Office.Interop.Excel.Range that represents the current region.
Remarks
The current region is a range bounded by any combination of blank rows and blank columns.
This property cannot be used on a protected worksheet.
Examples
The following code example creates a NamedRange and populates it with the value 123. It then colors the current region, which is the region bounded by blank rows and columns, green.
This example is for a document-level customization.
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 Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.