Compartir a través de


de la propiedad HtmlValidationContext.AllowHyperlinks

Obtiene o establece la restricción de que permite hipervínculos a agregarse en el código HTML.

Espacio de nombres:  Microsoft.SharePoint.Publishing.Fields
Ensamblado:  Microsoft.SharePoint.Publishing (en Microsoft.SharePoint.Publishing.dll)

Sintaxis

'Declaración
Public Property AllowHyperlinks As Boolean
    Get
    Set
'Uso
Dim instance As HtmlValidationContext
Dim value As Boolean

value = instance.AllowHyperlinks

instance.AllowHyperlinks = value
public bool AllowHyperlinks { get; set; }

Valor de propiedad

Tipo: System.Boolean
Valor predeterminado es True.

Comentarios

Cuando se establece en True, se permiten los hipervínculos. Si se establece este indicador para False, se quitan las etiquetas <A>, <AREA> y <MAP> del HTML.

Ejemplos

// Set the constraint properties to any desired combination of true and false
      validationContext.AllowFonts = true;
      validationContext.AllowHeadings = false;
      validationContext.AllowHyperlinks = true;
      validationContext.AllowImages = false;
      validationContext.AllowLists = false;
      validationContext.AllowTables = true;
      validationContext.AllowTextMarkup = false;

Nota

Este ejemplo forma parte de la muestra más grande de ValidateHtmlCode en el tema de HtmlValidationContext .

Vea también

Referencia

clase HtmlValidationContext

Miembros HtmlValidationContext

Espacio de nombres Microsoft.SharePoint.Publishing.Fields

AllowFonts

AllowHeadings

AllowImages

AllowLists

AllowTables

AllowTextMarkup