共用方式為


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 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間