Typeface.Weight Propiedad

Definición

Obtiene el grosor relativo del tipo de letra.

public:
 property System::Windows::FontWeight Weight { System::Windows::FontWeight get(); };
public System.Windows.FontWeight Weight { get; }
member this.Weight : System.Windows.FontWeight
Public ReadOnly Property Weight As FontWeight

Valor de propiedad

FontWeight

Valor de FontWeight que representa el grosor relativo del tipo de letra.

Ejemplos

// Get the font weight value for the typeface.
FontWeight fontWeight = typeface.Weight;

if (fontWeight == FontWeights.ExtraBold)
{
    // Perform action based on extra bold weight value.
}
' Get the font weight value for the typeface.
Dim fontWeight As FontWeight = typeface.Weight

If fontWeight = FontWeights.ExtraBold Then
    ' Perform action based on extra bold weight value.
End If

Comentarios

Las diferencias de peso generalmente se diferencian por un mayor trazo o grosor asociado a un carácter determinado en un tipo de letra, en comparación con un carácter "normal" de ese mismo tipo de letra.

Nota No todos los pesos están disponibles para todos los tipos de letra. Cuando un peso no está disponible para un tipo de letra, se devuelve el peso coincidente más cercano.

Se aplica a