IndexOf

IFontFallBackRule.IndexOf method

Renvoie un index de la règle spécifiée dans la collection.

public int IndexOf(string fontName)
ParamètreTaperLa description
fontNameStringNom de la police à trouver.

Return_Value

Index d’une police ou -1 si police introuvable dans la liste.

Exemples

[C#]
// Créer une règle contient une liste de polices.
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho, MS Gothic, Tahoma, Times New Roman");

//Obtenir l'index de Tahoma
int tahomaIndex = newRule.IndexOf("Tahoma");

Voir également