Freigeben über


<customizations-Element> (Office-Entwicklung in Visual Studio)

Das customizations -Element des vstov4 -Namespace enthält alle Informationen zum Installieren und Laden der einzelnen Office-Projektmappen.

Syntax für Anpassungen auf Dokumentebene

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

Syntax für VSTO-Add-Ins

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

Elemente und Attribute

Das customizations -Element enthält bestimmte Informationen zu den einzelnen Office-Projektmappen. Dieses Element muss sich im folgenden Namespace befinden: vstov4=urn:schemas-microsoft-com:vsto.v4. Untergeordnete Elemente der Assembly müssen sich ebenfalls in diesem Namespace befinden.

Das customizations -Element weist keine Attribute auf.

Das customizations -Element hat das folgende untergeordnete Element:

Anpassung

Erforderlich. Das customization Element im vstov4 Namespace wird im <Anpassungselement> (Office-Entwicklung in Visual Studio) definiert.

Beispiel für eine Anpassung auf Dokumentebene

Beschreibung

Im folgenden Codebeispiel wird das customizations -Element für eine Anpassung auf Dokumentebene veranschaulicht.

Hinweis

Dieses Codebeispiel ist Teil eines größeren Beispiels, das in Anwendungsmanifesten für Office-Lösungen bereitgestellt wird.

Code

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

Beispiel für ein VSTO-Add-In

Beschreibung

Das folgende Codebeispiel veranschaulicht das customizations Element für ein VSTO-Add-In. Das Add-In ist ein Outlook-VSTO-Add-in, das Formularbereiche enthält. Dieses Codebeispiel ist Teil eines größeren Beispiels, das in Anwendungsmanifesten für Office-Lösungen bereitgestellt wird.

Code

<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>