次の方法で共有


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 セキュリティ

  • 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

NamedRange インターフェイス

Microsoft.Office.Tools.Excel 名前空間