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