Add
GlobalLayoutSlideCollection.Add method
Adds a new layout slide to the presentation.
public ILayoutSlide Add(IMasterSlide master, SlideLayoutType layoutType, string layoutName)
Parameter | Type | Description |
---|---|---|
master | IMasterSlide | Master slide for a new layout. |
layoutType | SlideLayoutType | Layout type for a new layout. Supported layout types: Title, TitleOnly, Blank, TitleAndObject, VerticalText, VerticalTitleAndText, TwoObjects, SectionHeader, TwoTextAndTwoObjects, TitleObjectAndCaption, PictureAndCaption, Custom. Other layout types are not supported now: Text, TwoColumnText, Table, TextAndChart, ChartAndText, Diagram, Chart, TextAndClipArt, ClipArtAndText, TextAndObject, ObjectAndText, Object, TextAndMedia, MediaAndText, ObjectOverText, TextOverObject, TextAndTwoObjects, TwoObjectsAndText, TwoObjectsOverText, FourObjects, ClipArtAndVerticalText, VerticalTitleAndTextOverChart, ObjectAndTwoObject, TwoObjectsAndObject. |
layoutName | String | Name for a new layout. If passed name is already in use the ArgumentException will be thrown. If null parameter is passed then name genarated atomatically in regards to passed layout type (for example “Title Slide” or “1_Title Slide”, “2_..”, etc.). |
Return Value
Added slide.
Exceptions
exception | condition |
---|---|
NotImplementedException | Thrown if unsupported value of parameter layoutType is passed. Layout types that are not supported now: Text, TwoColumnText, Table, TextAndChart, ChartAndText, Diagram, Chart, TextAndClipArt, ClipArtAndText, TextAndObject, ObjectAndText, Object, TextAndMedia, MediaAndText, ObjectOverText, TextOverObject, TextAndTwoObjects, TwoObjectsAndText, TwoObjectsOverText, FourObjects, ClipArtAndVerticalText, VerticalTitleAndTextOverChart, ObjectAndTwoObject, TwoObjectsAndObject. |
ArgumentNullException | Thrown if master is null. |
ArgumentException | Thrown if master belongs to the other presentation. |
ArgumentException | Thrown if layout name value layoutName is already in use in collection of the layouts of master. |
Remarks
- Added layout for value SlideLayoutType.Custom of layoutType contains no placeholders and no shapes. 2) Analogue of this method is method
Add
accessed withLayoutSlides
property.
See Also
- interface ILayoutSlide
- interface IMasterSlide
- enum SlideLayoutType
- class GlobalLayoutSlideCollection
- namespace Aspose.Slides
- assembly Aspose.Slides