XmlMappedRange.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
목록의 자동 완성 일치 항목입니다.
설명
자동 완성 일치 항목이 없거나 완성할 문자열과 일치하는 항목이 목록에 여러 개 있으면 메서드는 빈 문자열을 반환합니다.
이 메서드는 자동 완성 기능이 비활성화된 경우에도 작동합니다.
예제
다음 코드 예제에서는 문자열 "Smith"를 셀 B1에 입력한 다음 AutoComplete 메서드를 사용하여 문자열 "Smi"에 대한 자동 완성 일치 항목을 찾습니다.이 코드 예제에서는 현재 워크시트에 CustomerLastNameCell이라는 XmlMappedRange가 포함되어 있다고 가정합니다.CustomerLastNameCell이 셀 B2에 있으면 자동 완성 일치 항목이 검색됩니다.
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 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.