Compartir a través de


de la propiedad HtmlValidationContext.AllowHeadings

Obtiene o establece la restricción de que permite que las etiquetas de título para 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 AllowHeadings As Boolean
    Get
    Set
'Uso
Dim instance As HtmlValidationContext
Dim value As Boolean

value = instance.AllowHeadings

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

Valor de propiedad

Tipo: System.Boolean
Valor predeterminado es True.

Comentarios

Cuando se establece en True, se permiten etiquetas de título. Si se establece este indicador para False, se quitan las siguientes etiquetas de HTML:

<DIR>, <H1>, <H2>, <H3>, <H4>, <H5>, <H6>, <MARQUEE>, <ADDRESS> y <CENTER>.

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

AllowHyperlinks

AllowImages

AllowLists

AllowTables

AllowTextMarkup