Partager via


Chart.CheckSpelling(Object, Object, Object, Object) Méthode

Définition

Vérifie l'orthographe d'un objet. Microsoft Office Excel affiche la boîte de dialogue Orthographe.

public void CheckSpelling (object CustomDictionary, object IgnoreUppercase, object AlwaysSuggest, object SpellLang);
abstract member CheckSpelling : obj * obj * obj * obj -> unit
Public Sub CheckSpelling (Optional CustomDictionary As Object, Optional IgnoreUppercase As Object, Optional AlwaysSuggest As Object, Optional SpellLang As Object)

Paramètres

CustomDictionary
Object

Le nom de fichier du dictionnaire personnel à examiner si le mot n'est pas trouvé dans le dictionnaire principal. Si cet argument est omis, le dictionnaire actuellement spécifié est utilisé.

IgnoreUppercase
Object

true pour que Microsoft Office Excel ignore les mots tout en majuscules. false pour qu'Excel vérifie les mots écrits en majuscules. Si cet argument est omis, le paramètre actuel est utilisé.

AlwaysSuggest
Object

true pour qu'Excel affiche une liste d'autres suggestions orthographiques lorsqu'il détecte un mot mal orthographié. false pour qu'Excel attende que vous saisissiez l'orthographe correcte. Si cet argument est omis, le paramètre actuel est utilisé.

SpellLang
Object

Langue du dictionnaire utilisé. Il peut s'agir de l'une des valeurs de MsoLanguageID utilisées par la propriété LanguageID[MsoAppLanguageID].

Exemples

L’exemple de code suivant crée un avec des fautes d’orthographe Chart dans le titre, puis utilise la CheckSpelling méthode pour case activée l’orthographe dans le graphique tout en ignorant les mots majuscules et en suggérant d’autres orthographes.

private void CatchSpellingError()
{
    this.Range["A1", "A5"].Value2 = 22;
    this.Range["B1", "B5"].Value2 = 55;

    Microsoft.Office.Tools.Excel.Chart chart1 =
        this.Controls.AddChart(this.Range["D2", "H12"], 
        "chart1");

    chart1.ChartWizard(this.Range["A1", "B5"], 
        Excel.XlChartType.xl3DColumn, 
        Excel.XlRowCol.xlColumns);

    chart1.CheckSpelling(true, true,
        Office.MsoLanguageID.msoLanguageIDEnglishUS);
}
Private Sub CatchSpellingError()
    Me.Range("A1", "A5").Value2 = 22
    Me.Range("B1", "B5").Value2 = 55

    Dim Chart1 As Microsoft.Office.Tools.Excel.Chart = _
        Me.Controls.AddChart(Me.Range("D2", "H12"), "Chart1")

    Chart1.ChartWizard(Me.Range("A1", "B5"), _
        Excel.XlChartType.xl3DColumn, PlotBy:=Excel.XlRowCol.xlColumns, _
        Title:="Salez Datta")

    Chart1.CheckSpelling(IgnoreUppercase:=True, AlwaysSuggest:=True, _
        SpellLang:=Office.MsoLanguageID.msoLanguageIDEnglishUS)
End Sub

Remarques

Paramètres facultatifs

Pour plus d’informations sur les paramètres facultatifs, consultez Paramètres facultatifs dans les solutions Office.

S’applique à