FormattedText.BuildGeometry(Point) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает объект Geometry, представляющий форматированный текст, включая все глифы и оформление текста.
public:
System::Windows::Media::Geometry ^ BuildGeometry(System::Windows::Point origin);
public System.Windows.Media.Geometry BuildGeometry (System.Windows.Point origin);
member this.BuildGeometry : System.Windows.Point -> System.Windows.Media.Geometry
Public Function BuildGeometry (origin As Point) As Geometry
Параметры
- origin
- Point
Начало координат в левом верхнем углу результирующей геометрии.
Возвращаемое значение
Представление форматированного текста в виде объекта Geometry.
Примеры
В следующем примере показано, FormattedText как создать объект и получить геометрию форматированного текста и его ограничивающего прямоугольника.
/// <summary>
/// Create the outline geometry based on the formatted text.
/// </summary>
public void CreateText()
{
System.Windows.FontStyle fontStyle = FontStyles.Normal;
FontWeight fontWeight = FontWeights.Medium;
if (Bold == true) fontWeight = FontWeights.Bold;
if (Italic == true) fontStyle = FontStyles.Italic;
// Create the formatted text based on the properties set.
FormattedText formattedText = new FormattedText(
Text,
CultureInfo.GetCultureInfo("en-us"),
FlowDirection.LeftToRight,
new Typeface(
Font,
fontStyle,
fontWeight,
FontStretches.Normal),
FontSize,
System.Windows.Media.Brushes.Black // This brush does not matter since we use the geometry of the text.
);
// Build the geometry object that represents the text.
_textGeometry = formattedText.BuildGeometry(new System.Windows.Point(0, 0));
// Build the geometry object that represents the text highlight.
if (Highlight == true)
{
_textHighLightGeometry = formattedText.BuildHighlightGeometry(new System.Windows.Point(0, 0));
}
}
''' <summary>
''' Create the outline geometry based on the formatted text.
''' </summary>
Public Sub CreateText()
Dim fontStyle As FontStyle = FontStyles.Normal
Dim fontWeight As FontWeight = FontWeights.Medium
If Bold = True Then
fontWeight = FontWeights.Bold
End If
If Italic = True Then
fontStyle = FontStyles.Italic
End If
' Create the formatted text based on the properties set.
Dim formattedText As New FormattedText(Text, CultureInfo.GetCultureInfo("en-us"), FlowDirection.LeftToRight, New Typeface(Font, fontStyle, fontWeight, FontStretches.Normal), FontSize, Brushes.Black) ' This brush does not matter since we use the geometry of the text.
' Build the geometry object that represents the text.
_textGeometry = formattedText.BuildGeometry(New Point(0, 0))
' Build the geometry object that represents the text highlight.
If Highlight = True Then
_textHighLightGeometry = formattedText.BuildHighlightGeometry(New Point(0, 0))
End If
End Sub
Комментарии
При преобразовании текста в Geometry объект он больше не является коллекцией символов. Вы не можете изменить символы в текстовой строке. Тем не менее можно повлиять на внешний вид преобразованного текст, изменив его свойства штриха и заливки.
В следующих примерах показаны несколько способов создания визуальных эффектов посредством изменения штриха и заливки преобразованного текста.
Пример настройки росчерка и заливки для разных цветов
Пример кисти изображения, примененной к росчерку
Текст, преобразованный в и отображаемый Geometry в виде объекта, может выглядеть не так, как текст, отображаемый напрямую:
Текст, преобразованный в объект , Geometry не отображается с помощью ClearType. Кроме того, базовый план преобразованного не привязывается ко всему пикселю дисплея.
Небольшие шрифты, такие как те, которые часто используются в основном тексте, могут потерять удобочитаемость, показаться размытыми и отличаться по внешнему виду.