System.Windows.Forms.RTF.StandardCharName.Name C# (CSharp) Méthode

Name() public static méthode

Lookup name by ID
public static Name ( int index ) : string
index int
Résultat string
		public static string Name(int index) {
			if ((index < 0) || (index >= Names.Length)) {
				return string.Empty;
			}

			return Names[index];
		}
StandardCharName