PagesSection.SmartNavigation Propiedad

Definición

Obtiene o establece un valor que indica si las navegaciones inteligentes están habilitadas.

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

Valor de propiedad

Boolean

Es true si la animación inteligente está habilitada; de lo contrario, es false. El valor predeterminado es false.

Atributos

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad 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

Comentarios

Nota

La navegación inteligente requiere Microsoft Internet Explorer 5.5 o posterior.

Se aplica a