XmlMappedRange.FormulaLabel 屬性
取得或設定 XmlMappedRange 控制項的公式標籤類型。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Property FormulaLabel As XlFormulaLabel
Get
Set
XlFormulaLabel FormulaLabel { get; set; }
屬性值
型別:Microsoft.Office.Interop.Excel.XlFormulaLabel
XmlMappedRange 控制項的公式標籤類型。
備註
如果範圍不包含標籤或下列其中一個 XlFormulaLabel 常數,則這個屬性的傳回值可以是 xlNone:
範例
下列程式碼範例使用 FormulaLabel 屬性將 XmlMappedRange 設定為欄標籤。 這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange。
Private Sub ShowFormulaLabel()
Globals.ThisWorkbook.AcceptLabelsInFormulas = True
Me.CustomerLastNameCell.FormulaLabel = _
Excel.XlFormulaLabel.xlColumnLabels
End Sub
private void ShowFormulaLabel()
{
Globals.ThisWorkbook.AcceptLabelsInFormulas = true;
this.CustomerLastNameCell.FormulaLabel =
Excel.XlFormulaLabel.xlColumnLabels;
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。