CharacterMetrics Constructors

Definition

Initializes a new instance of the CharacterMetrics class.

Overloads

CharacterMetrics()

Initializes a new instance of the CharacterMetrics class.

CharacterMetrics(String)

Initializes a new instance of the CharacterMetrics class by specifying the metrics as a string.

CharacterMetrics()

Initializes a new instance of the CharacterMetrics class.

public:
 CharacterMetrics();
public CharacterMetrics ();
Public Sub New ()

Remarks

The CharacterMetrics object is constructed using the default metric values.

Applies to

CharacterMetrics(String)

Initializes a new instance of the CharacterMetrics class by specifying the metrics as a string.

public:
 CharacterMetrics(System::String ^ metrics);
public CharacterMetrics (string metrics);
new System.Windows.Media.CharacterMetrics : string -> System.Windows.Media.CharacterMetrics
Public Sub New (metrics As String)

Parameters

metrics
String

A comma-delimited String value that represents the metrics for the character.

Remarks

The metrics parameter is a comma-delimited string that specifies the CharacterMetrics properties in the following order:

The first two properties, BlackBoxWidth and BlackBoxHeight, are required. However, the other five properties are optional, and will default to zero if not specified. For example, if you specify the string value of "0.75,0.75,,0.1" for the metrics parameter, the BlackBoxWidth, BlackBoxHeight, and LeftSideBearing properties are set - the unspecified properties are set to zero.

Applies to