Skip to main content
Version: Classic

Slide Layout


Purpose and use

This function is only available in PowerPoint Master templates. With this function layouts can be defined.

Basic structure

<SlideLayoutConfiguration>
<SlideLayouts>
<!-- ... -->
</SlideLayouts>
</SlideLayoutConfiguration>

SlideLayout

<SlideLayout Name="Contact" />

Attributes

Attribute namesDescription
Name
(mandatory)
The ID of the SlideLayout
DisplayName

translate-DisplayName

(mandatory)
The display name or the translation to a display name
IsDesignConversionFallback

(optional)
Determines whether the SlideLayout is used if the DesignConversion cannot assign a layout. Default value: false

This value may only be true for a SlideLayout.

Elementes

AssetFilter

Defines Include-elements that use the Path attribute to retrieve the name of an image gallery that is shared in the master template.

<AssetFilter>
<Include Path="ImageGallery/" />
</AssetFilter>

DesignConversionMappings

Defines which layout names should be searched for in external PowerPoint files to be converted in order to convert this SlideLayout. This is usually the same designation as the Name of the SlideLayout.

<DesignConversionMappings>
<Name>Image with Quote</Name>
</DesignConversionMappings>

Design Conversion

Design conversion automatically adapts slides from any PowerPoint presentation to a specified corporate design. The layout names in the external files are compared with the DesignConversionMappings defined in the master template. If a matching mapping is found, the layout of the slide is transferred accordingly. A status dialog is displayed during the conversion. Once the conversion is complete, the dialog informs the user that the conversion was successful. If the conversion is successful, the converted presentation opens automatically.


Detailed example

<SlideLayoutConfiguration>
<SlideLayouts>
<SlideLayout Name="TitleSlide with Image" >
<AssetFilter>
<Include Path="Pictures/"></Include>
</AssetFilter>
</SlideLayout>
<SlideLayout Name="TitleSlide">
<AssetFilter/>
<!-- <Include Path="TitleImages169/Beach/"></Include>
<Include Path="TitleImages169/Pattern/"></Include>
<Include Path="TitleImages169/Water colour/"></Include> -->
</SlideLayout>
<SlideLayout Name="IntermediateSlide">
<AssetFilter/>
</SlideLayout>
<SlideLayout Name="Agenda">
<AssetFilter/>
</SlideLayout>
<SlideLayout Name="Title and Content">
<AssetFilter>
<Include Path="Pictures/"></Include>
</AssetFilter>
</SlideLayout>
<SlideLayout Name="Two Contents">
<AssetFilter>
<Include Path="Pictures/"></Include>
</AssetFilter>
</SlideLayout>
<SlideLayout Name="Content and Image">
<AssetFilter>
<Include Path="Pictures/"></Include>
</AssetFilter>
</SlideLayout>
<SlideLayout Name="Three Contents">
<AssetFilter>
<Include Path="Pictures/"></Include>
</AssetFilter>
</SlideLayout>
<SlideLayout Name="Contents 2 to 1">
<AssetFilter>
<Include Path="Pictures/"></Include>
</AssetFilter>
</SlideLayout>
<SlideLayout Name="Image">
<AssetFilter>
<Include Path="Pictures/"></Include>
</AssetFilter>
</SlideLayout>
<SlideLayout Name="Image with Quote">
<AssetFilter>
<Include Path="Pictures/"></Include>
</AssetFilter>
</SlideLayout>
<SlideLayout Name="Title Only" IsDesignConversionFallback="true">
<AssetFilter>
<Include Path="Pictures/"></Include>
</AssetFilter>
</SlideLayout>
<SlideLayout Name="Empty">
<AssetFilter>
<Include Path="Pictures/"></Include>
</AssetFilter>
</SlideLayout>
<SlideLayout Name="ContactSlide">
<AssetFilter/>
</SlideLayout>
</SlideLayouts>
</SlideLayoutConfiguration>