TextHintingMode 列挙型
定義
静的テキストまたはアニメーション化されたテキストの描画動作を定義します。Defines the rendering behavior of static or animated text.
public enum class TextHintingMode
public enum TextHintingMode
type TextHintingMode =
Public Enum TextHintingMode
- 継承
フィールド
Animated | 2 | レンダリング エンジンは最高のアニメーション品質でテキストを描画します。The rendering engine renders text with the highest animated quality. |
Auto | 0 | レンダリング エンジンはアニメーション化されたテキストまたは静的テキストのどちらに適した品質設定でテキストを描画するかを自動的に判断します。The rendering engine automatically determines whether to draw text with quality settings appropriate for animated or static text. |
Fixed | 1 | レンダリング エンジンは最高の静的品質でテキストを描画します。The rendering engine renders text with the highest static quality. |
注釈
静的テキストの場合は、Fixed を使用します。For static text, use Fixed.
アニメーション化されたテキストの場合は、アニメーションを使用して、テキスト品質を犠牲にしたアニメーションを滑らかにすることができます。For animated text, use Animated to allow for smoother animations at the cost of text quality.