次の方法で共有


XClosedCaptionProperties

クローズド キャプションのプロパティを記述します。

構文

typedef struct XClosedCaptionProperties {  
    XColor BackgroundColor;  
    XColor FontColor;  
    XColor WindowColor;  
    XClosedCaptionFontEdgeAttribute FontEdgeAttribute;  
    XClosedCaptionFontStyle FontStyle;  
    float FontScale;  
    bool Enabled;  
} XClosedCaptionProperties  

メンバー

BackgroundColor
型: XColor

クローズド キャプションの背景色。

FontColor
型: XColor

クローズド キャプションのテキスト フォントの色。

WindowColor
型: XColor

クローズド キャプションのウィンドウの色。

FontEdgeAttribute
型: XClosedCaptionFontEdgeAttribute

クローズド キャプション テキストのフォントのエッジ属性。

FontStyle
型: XClosedCaptionFontStyle

クローズド キャプション テキストのフォント スタイル。

FontScale
型: float

クローズド キャプション テキストのフォントのスケール。

Enabled
型: bool

クローズド キャプションが有効の場合は true、それ以外の場合は false。

解説

現在のクローズド キャプション プロパティを取得するには、XClosedCaptionGetProperties 関数を呼び出します。 XClosedCaptionGetProperties 関数は、引数として XClosedCaptionProperties 構造体へのポインターを使用します。

次の例では、クローズド キャプションのプロパティを取得する方法を示します。

XClosedCaptionProperties ccProperties;
if (SUCCEEDED(XClosedCaptionGetProperties(&ccProperties))
{
    // The game title can now access color and font settings in the ccProperties structure.
}

要件

ヘッダー: XAccessibility.h

サポートされているプラットフォーム: Windows、Xbox One ファミリー本体、Xbox Series 本体

関連項目

XAccessibility

XClosedCaptionFontEdgeAttribute

XClosedCaptionFontStyle

XClosedCaptionGetProperties