Share via


PagesSection.SmartNavigation Vlastnost

Definice

Získá nebo nastaví hodnotu, která označuje, zda je povolena inteligentní navigace.

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

Hodnota vlastnosti

truepokud je povolena inteligentní navigace; v opačném případě . false Výchozí hodnota je false.

Atributy

Příklady

Následující příklad kódu ukazuje, jak použít SmartNavigation vlastnost .

// 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

Poznámky

Poznámka

Inteligentní navigace vyžaduje Microsoft Internet Exploreru 5.5 nebo vyšší.

Platí pro