共用方式為


XmlMappedRange.AutoComplete 方法

從清單中取得 AutoComplete 的符合項目。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
Function AutoComplete ( _
    String As String _
) As String
string AutoComplete(
    string String
)

參數

傳回值

型別:System.String
清單中的 AutoComplete 符合項目。

備註

如果沒有 AutoComplete 的符合項目,或者清單中有多筆項目都與要完成的字串相符,則這個方法會傳回空字串。

即使停用 AutoComplete 功能,這個方法仍有作用。

範例

下列程式碼範例將字串 "Smith" 輸入到儲存格 B1 中,然後使用 AutoComplete 方法尋找符合的 AutoComplete。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange。如果 CustomerLastNameCell 在儲存格 B2 內,則會找到符合的 AutoComplete。

Private Sub DisplayAutoCompleteResult()
    Me.Range("B1").Value2 = "Smith"
    Dim autoString As String = Me.CustomerLastNameCell.AutoComplete("Smi")

    If String.IsNullOrEmpty(autoString) Then
        MsgBox("No AutoComplete results were found.")
    Else
        Me.CustomerLastNameCell.Value2 = autoString
    End If
End Sub
private void DisplayAutoCompleteResult()
{
    this.Range["B1", missing].Value2 = "Smith";
    string autoString = this.CustomerLastNameCell.AutoComplete("Smi");

    if (String.IsNullOrEmpty(autoString))
    {
        MessageBox.Show("No AutoComplete results were found.");
    }
    else
    {
        this.CustomerLastNameCell.Value2 = autoString;
    }
}

.NET Framework 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間