Udostępnij za pośrednictwem


<customizations> , element (Programowanie pakietu Office w programie Visual Studio)

Element customizations przestrzeni nazw zawiera wszystkie informacje o instalowaniu vstov4 i ładowaniu każdego rozwiązania pakietu Office.

Składnia dostosowywania na poziomie dokumentu

<customizations>
  <customization
    id
    <document
      solutionId
    />
  </customization>
</customizations>

Składnia dodatków VSTO

<customizations>
  <customization
    id
    <appAddin
      application
      loadBehavior
      keyName>
    <friendlyName></friendlyName>
    <description></description>
    <formRegions></formRegions>
  </customization>
</customizations>

Elementy i atrybuty

Element customizations zawiera konkretne informacje o każdym rozwiązaniu pakietu Office. Ten element musi znajdować się w następującej przestrzeni nazw: vstov4=urn:schemas-microsoft-com:vsto.v4. Elementy podrzędne zestawu muszą również znajdować się w tej przestrzeni nazw.

Element customizations nie ma atrybutów.

Element customizations ma następujący element podrzędny.

Dostosowanie

Wymagany. Element customization w przestrzeni nazw jest zdefiniowany w< elemecie dostosowywania> (Programowanie pakietu Office w programie Visual Studio).vstov4

Przykład dostosowywania na poziomie dokumentu

opis

Poniższy przykład kodu ilustruje customizations element dostosowywania na poziomie dokumentu.

Uwaga

Ten przykład kodu jest częścią większego przykładu przedstawionego w manifeście aplikacji dla rozwiązań pakietu Office.

Kod

<vstov4:customizations
  xmlns:vstov4="urn:schemas-microsoft-com:vsto.v4">
  <vstov4:customization>
    <vstov4:document
      solutionId="73e" />
  </vstov4:customization>
</vstov4:customizations>

Przykład dodatku VSTO

opis

Poniższy przykład kodu ilustruje customizations element dodatku VSTO. Jest to dodatek programu Outlook VSTO, który zawiera regiony formularzy. Ten przykład kodu jest częścią większego przykładu przedstawionego w manifeście aplikacji dla rozwiązań pakietu Office.

Kod

<vstov4:customizations
  xmlns:vstov4="urn:schemas-microsoft-com:vsto.v4">
  <vstov4:customization>
    <vstov4:appAddIn
      application="Outlook"
      loadBehavior="3"
      keyName="ContosoOutlookAddIn">
      <vstov4:friendlyName>
        ContosoOutlookAddIn
      </vstov4:friendlyName>
      <vstov4:description>
        ContosoOutlookAddIn - Outlook VSTO Add-in
        created with Visual Studio Tools for Office
      </vstov4:description>
      <vstov4:formRegions>
        <vstov4:formRegion
            name="OutlookAddIn1.FormRegion1">
          <vstov4:messageClass name="IPM.Note" />
          <vstov4:messageClass name="IPM.Contact" />
          <vstov4:messageClass name="IPM.Appointment" />
        </vstov4:formRegion>
      </vstov4:formRegions>
    </vstov4:appAddIn>
  </vstov4:customization>
</vstov4:customizations>