Layout.SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
IndexBasedLayoutOrientation
プロパティの値を設定します。
protected:
virtual void SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation orientation) = SetIndexBasedLayoutOrientation;
void SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation const& orientation);
protected void SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation orientation);
function setIndexBasedLayoutOrientation(orientation)
Protected Sub SetIndexBasedLayoutOrientation (orientation As IndexBasedLayoutOrientation)
パラメーター
- orientation
- IndexBasedLayoutOrientation
ソース コレクション内のインデックスに基づいて項目がレイアウトされる方向 (存在する場合) を示す列挙体の値。
例
public class MyHorizontalLayout : NonVirtualizingLayout
{
public class MyHorizontalLayout()
{
SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation.LeftToRight);
Debug.Assert(this.IndexBasedLayoutOrientation == IndexBasedLayoutOrientation.LeftToRight);
}
}