AutomationProperties.HeadingLevelProperty プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
UI オートメーション要素の見出しレベルを示す HeadingLevel 添付プロパティの識別子を取得します。
public:
static property DependencyProperty ^ HeadingLevelProperty { DependencyProperty ^ get(); };
static DependencyProperty HeadingLevelProperty();
public static DependencyProperty HeadingLevelProperty { get; }
var dependencyProperty = AutomationProperties.headingLevelProperty;
Public Shared ReadOnly Property HeadingLevelProperty As DependencyProperty
プロパティ値
HeadingLevel 添付プロパティの識別子。
例
<TextBlock
Text="Mouse Options"
AutomationProperties.HeadingLevel="1"/>
</TextBlock>
<StackPanel AutomationProperties.AutomationName="Description of Content" AutomationProperties.HeadingLevel="1">
<!-- content here -->
</StackPanel>
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
AutomationProperties.SetHeadingLevel(this, AutomationHeadingLevel.HeadingLevel3);
}
}
注釈
見出し要素は、ユーザー インターフェイスを整理し、移動しやすくします。 一部の支援技術 (AT) を使用すると、ユーザーは見出し間をすばやくジャンプできます。 見出しのレベルは 1 から 9 です。
見出しレベルのプロパティ値は、 GetHeadingLevel メソッドによって返されます。