共用方式為


XmlMappedRange.CheckSpelling 方法

檢查 XmlMappedRange 控制項中文字的拼字是否有誤。

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

語法

'宣告
Function CheckSpelling ( _
    CustomDictionary As Object, _
    IgnoreUppercase As Object, _
    AlwaysSuggest As Object, _
    SpellLang As Object _
) As Object
Object CheckSpelling(
    Object CustomDictionary,
    Object IgnoreUppercase,
    Object AlwaysSuggest,
    Object SpellLang
)

參數

  • CustomDictionary
    型別:System.Object
    表示如果在主字典中找不到文字,則會檢查這個參數所指檔名的自訂字典。如果省略這個引數,將會使用目前指定的字典。
  • IgnoreUppercase
    型別:System.Object
    true 表示 Microsoft Office Excel 忽略全部大寫文字,否則為 false,表示 Excel 檢查全部大寫文字。如果省略這個引數,則會使用目前設定。
  • AlwaysSuggest
    型別:System.Object
    true 表示當找到錯誤的拼字時,Excel 會顯示建議的替代拼法,否則為 false,表示當您輸入正確的拼法時 Excel 會暫停。如果省略這個引數,則會使用目前設定。

傳回值

型別:System.Object

備註

這個方法沒有傳回值,Excel 會顯示 [拼字檢查] 對話方塊。

選擇性參數

如需選擇性參數的詳細資訊,請參閱Office 方案中的選擇性參數

範例

下列程式碼範例使用 CheckSpelling 方法,檢查 XmlMappedRange 內文字的拼法是否正確。 這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange

Private Sub CheckSpellingErrors()
    Me.CustomerLastNameCell.Value2 = "Smth"
    Me.CustomerLastNameCell.CheckSpelling(IgnoreUppercase:=True, _
        AlwaysSuggest:=True, SpellLang:=Office.MsoLanguageID.msoLanguageIDEnglishUS)
End Sub
private void CheckSpellingErrors()
{
    this.CustomerLastNameCell.Value2 = "Smth";
    this.CustomerLastNameCell.CheckSpelling(true, true,
        Office.MsoLanguageID.msoLanguageIDEnglishUS);
}

.NET Framework 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間