FontFamily.GetTypefaces Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Importante
Esta API não está em conformidade com CLS.
Retorna uma coleção de objetos Typeface que representam as faces de tipo no local de fontes padrão do sistema.
public:
System::Collections::Generic::ICollection<System::Windows::Media::Typeface ^> ^ GetTypefaces();
[System.CLSCompliant(false)]
public System.Collections.Generic.ICollection<System.Windows.Media.Typeface> GetTypefaces ();
[<System.CLSCompliant(false)>]
member this.GetTypefaces : unit -> System.Collections.Generic.ICollection<System.Windows.Media.Typeface>
Public Function GetTypefaces () As ICollection(Of Typeface)
Retornos
Um ICollection<T> de Typeface objetos.
- Atributos
Exemplos
// Return the font family for the selected font name.
FontFamily fontFamily = new FontFamily("Palatino Linotype");
// Return the collection of typefaces for the font family.
System.Collections.Generic.ICollection<Typeface> typefaces = fontFamily.GetTypefaces();
' Return the font family for the selected font name.
Dim fontFamily As New FontFamily("Palatino Linotype")
' Return the collection of typefaces for the font family.
Dim typefaces As System.Collections.Generic.ICollection(Of Typeface) = fontFamily.GetTypefaces()
Aplica-se a
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.