UnicodeRange(Int32, Int32) Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée un UnicodeRange qui inclut un nombre spécifié de caractères à partir d’un point de code Unicode spécifié.
public:
UnicodeRange(int firstCodePoint, int length);
public UnicodeRange (int firstCodePoint, int length);
new System.Text.Unicode.UnicodeRange : int * int -> System.Text.Unicode.UnicodeRange
Public Sub New (firstCodePoint As Integer, length As Integer)
Paramètres
- firstCodePoint
- Int32
Premier point de code dans la plage.
- length
- Int32
Nombre de points de code dans la plage.
Exceptions
firstCodePoint
est inférieur à zéro ou supérieur à 0xFFFF.
- ou -
length
est inférieur à zéro.
- ou -
firstCodePoint
plus length
est supérieur à 0xFFFF.
Remarques
Tous les points de code non définis entre firstCodePoint
et firstCodePoint
+ length
- 1 sont inclus dans l’instance UnicodeRange créée en appelant ce constructeur.