Compartilhar via


Propriedade XmlMappedRange.CurrentRegion

Obtém 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
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 usa a propriedade de CurrentRegion para definir a cor da região dentro de XmlMappedRange para verde. Este exemplo de código a seguir pressupõe que a planilha atual contiver XmlMappedRange chamado CustomerLastNameCell.

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

Segurança do .NET Framework

Consulte também

Referência

XmlMappedRange Interface

Namespace Microsoft.Office.Tools.Excel