WorksheetBase.Name プロパティ
ワークシートの名前を取得または設定します。
名前空間: Microsoft.Office.Tools.Excel
アセンブリ: Microsoft.Office.Tools.Excel.v4.0.Utilities (Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 内)
構文
'宣言
Public Property Name As String
public string Name { get; set; }
プロパティ値
型 : System.String
ワークシートの名前を指定します。
解説
次のコード例では、MailEnvelope プロパティを使用して、ワークシートの電子メール ヘッダーの先頭部分にワークシートの Name を割り当てます。
この例は、ドキュメント レベルのカスタマイズ用に作成されています。
Private Sub SetMailEnvelopeIntro()
Me.MailEnvelope.Introduction = _
"This is worksheet " & Me.Name
MsgBox("The MailEnvelope introduction is: " & _
Me.MailEnvelope.Introduction)
End Sub
private void SetMailEnvelopeIntro()
{
this.MailEnvelope.Introduction = "This is worksheet " + this.Name;
MessageBox.Show("The MailEnvelope introduction is: " +
this.MailEnvelope.Introduction);
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。