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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。