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

注釈

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

適用対象