コード例 #1
0
ファイル: TextShaper.cs プロジェクト: yzq1979/Avalonia
 /// <inheritdoc cref="ITextShaperImpl.ShapeText"/>
 public GlyphRun ShapeText(ReadOnlySlice <char> text, TextFormat textFormat)
 {
     return(_platformImpl.ShapeText(text, textFormat));
 }
コード例 #2
0
 /// <inheritdoc cref="ITextShaperImpl.ShapeText"/>
 public ShapedBuffer ShapeText(ReadOnlySlice <char> text, GlyphTypeface typeface, double fontRenderingEmSize,
                               CultureInfo?culture, sbyte bidiLevel)
 {
     return(_platformImpl.ShapeText(text, typeface, fontRenderingEmSize, culture, bidiLevel));
 }
コード例 #3
0
ファイル: TextShaper.cs プロジェクト: Gillibald/Avalonia
 /// <inheritdoc cref="ITextShaperImpl.ShapeText"/>
 public ShapedBuffer ShapeText(ReadOnlySlice <char> text, TextShaperOptions options)
 {
     return(_platformImpl.ShapeText(text, options));
 }
コード例 #4
0
ファイル: TextShaper.cs プロジェクト: soerendd/Avalonia
 /// <inheritdoc cref="ITextShaperImpl.ShapeText"/>
 public GlyphRun ShapeText(ReadOnlySlice <char> text, Typeface typeface, double fontRenderingEmSize,
                           CultureInfo?culture)
 {
     return(_platformImpl.ShapeText(text, typeface, fontRenderingEmSize, culture));
 }