PagesSection.SmartNavigation プロパティ

定義

スマート ナビゲーションが有効かどうかを示す値を取得または設定します。

public:
 property bool SmartNavigation { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("smartNavigation", DefaultValue=false)]
public bool SmartNavigation { get; set; }
[<System.Configuration.ConfigurationProperty("smartNavigation", DefaultValue=false)>]
member this.SmartNavigation : bool with get, set
Public Property SmartNavigation As Boolean

プロパティ値

スマート移動が有効な場合は true。それ以外の場合は false。 既定値は false です。

属性

次のコード例は、SmartNavigation プロパティの使用方法を示しています。

// Get the current SmartNavigation property value.
Console.WriteLine(
    "Current SmartNavigation value: '{0}'",
    pagesSection.SmartNavigation);

// Set the SmartNavigation property to true.
pagesSection.SmartNavigation = true;
' Get the current SmartNavigation property value.
Console.WriteLine( _
    "Current SmartNavigation value: '{0}'", pagesSection.SmartNavigation)

' Set the SmartNavigation property to true.
pagesSection.SmartNavigation = True

注釈

注意

スマート ナビゲーションには、Internet Explorer 5.5 以降Microsoft必要です。

適用対象