Compartilhar via


Propriedade NamedRange.CurrentRegion

Obtém Microsoft.Office.Interop.Excel.Range que representa a região atual.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (em Microsoft.Office.Tools.Excel.dll)

Sintaxe

'Declaração
ReadOnly Property CurrentRegion As Range
Range CurrentRegion { get; }

Valor de propriedade

Tipo: Microsoft.Office.Interop.Excel.Range
Microsoft.Office.Interop.Excel.Range que representa a região atual.

Comentários

A região atual é um intervalo limitado por qualquer combinação de linhas em branco e colunas em branco.

Esta propriedade não pode ser usada em uma planilha protegida.

Exemplos

O exemplo de código a seguir cria NamedRange e preenchê-los com o valor 123. Cores na região atual, que é a região delimitados por linhas em branco e por colunas, verde.

Este exemplo é para uma personalização de um documento nível.

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;
} 

Segurança do .NET Framework

Consulte também

Referência

NamedRange Interface

Namespace Microsoft.Office.Tools.Excel