Compartilhar via


Elemento Elements (ação personalizada)

Aplica-se a: SharePoint 2016 | SharePoint Foundation 2013 | | do SharePoint Online SharePoint Server 2013

Elemento de nível superior em um arquivo de manifesto de recurso que contém declarações de elemento feature.

Definição

<Elements Id = "Text">
</Elements>

Elementos e atributos

As seções a seguir descrevem os atributos, os elementos filhos e os elementos pai.

Atributos

Atributo Descrição
xmlns Obrigatório. Identifica o namespace XML. O valor deve ser http://schemas.microsoft.com/sharepoint/.
Id Texto opcional. Especifica um identificador exclusivo para o arquivo de manifesto de recurso.

Elementos filho

Elementos pai

Nenhum

Exemplo

O exemplo a seguir define uma ação personalizada que adiciona um botão à faixa de opções do Servidor.

<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <CustomAction
    Id="Ribbon.Library.Actions.AddAButton"
    Location="CommandUI.Ribbon"
    RegistrationId="101"
    RegistrationType="List"
    Title="Add a Ribbon Button">
    <CommandUIExtension>
      <CommandUIDefinitions>
        <CommandUIDefinition
          Location="Ribbon.Library.Share.Controls._children">
          <Button Id="Ribbon.Library.Share.NewRibbonButton"
            Command="NewRibbonButtonCommand"
            Image16by16="Insert an image URL here."
            Image32by32="Insert an image URL here."
            LabelText="Hello World"
            TemplateAlias="o2" />
        </CommandUIDefinition>
      </CommandUIDefinitions>
      <CommandUIHandlers>
        <CommandUIHandler
          Command="NewRibbonButtonCommand"
          CommandAction="javascript:alert('Hello, world');" />
      </CommandUIHandlers>
    </CommandUIExtension>
  </CustomAction>
</Elements>