Access Slide in Presentation

Aspose.Slides allows you to access slides in two ways: by index and by ID.

Access Slide by Index

All slides in a presentation are arranged numerically based on the slide position starting from 0. The first slide is accessible through index 0; the second slide is accessed through index 1; etc.

The Presentation class, representing a presentation file, exposes all slides as an SlideCollection collection (collection of Slide objects). This JavaScript code shows you how to access a slide through its index:

// Instantiates a Presentation object that represents a presentation file
var pres = new aspose.slides.Presentation("demo.pptx");
try {
    // Accesses a slide using its slide index
    var slide = pres.getSlides().get_Item(0);
} finally {
    pres.dispose();
}

Access Slide by ID

Each slide in a presentation has a unique ID associated with it. You can use the getSlideById method (exposed by the Presentation class) to target that ID. This JavaScript code shows you how to provide a valid slide ID and access that slide through the getSlideById method:

// Instantiates a Presentation object that represents a presentation file
var pres = new aspose.slides.Presentation("demo.pptx");
try {
    // Gets a slide ID
    var id = pres.getSlides().get_Item(0).getSlideId();
    // Accesses the slide through its ID
    var slide = pres.getSlideById(id);
} finally {
    pres.dispose();
}

Change Slide Position

Aspose.Slides allow you to change a slide position. For example, you can specify that the first slide should become the second slide.

  1. Create an instance of the Presentation class.
  2. Get the slide’s reference (whose position you want to change) through its index
  3. Set a new position for the slide through the setSlideNumber property.
  4. Save the modified presentation.

This JavaScript code demonstrates an operation in which the slide in position 1 is moved to position 2:

// Instantiates a Presentation object that represents a presentation file
var pres = new aspose.slides.Presentation("Presentation.pptx");
try {
    // Gets the slide whose position will be changed
    var sld = pres.getSlides().get_Item(0);
    // Sets the new position for the slide
    sld.setSlideNumber(2);
    // Saves the modified presentation
    pres.save("helloworld_Pos.pptx", aspose.slides.SaveFormat.Pptx);
} finally {
    pres.dispose();
}

The first slide became the second; the second slide became the first. When you change a slide’s position, other slides are automatically adjusted.

Set Slide Number

Using the setFirstSlideNumber property (exposed by the Presentation class), you can specify a new number for the first slide in a presentation. This operation causes other slide numbers to be recalculated.

  1. Create an instance of the Presentation class.
  2. Get the slide number.
  3. Set the slide number.
  4. Save the modified presentation.

This JavaScript code demonstrates an operation where the first slide number is set to 10:

// Instantiates a Presentation object that represents a presentation file
var pres = new aspose.slides.Presentation("HelloWorld.pptx");
try {
    // Gets the slide number
    var firstSlideNumber = pres.getFirstSlideNumber();
    // Sets the slide number
    pres.setFirstSlideNumber(10);
    // Saves the modified presentation
    pres.save("Set_Slide_Number_out.pptx", aspose.slides.SaveFormat.Pptx);
} finally {
    pres.dispose();
}

If you prefer to skip the first slide, you can start the numbering from the second slide (and hide the numbering for the first slide) this way:

var presentation = new aspose.slides.Presentation();
try {
    var layoutSlide = presentation.getLayoutSlides().getByType(aspose.slides.SlideLayoutType.Blank);
    presentation.getSlides().addEmptySlide(layoutSlide);
    presentation.getSlides().addEmptySlide(layoutSlide);
    presentation.getSlides().addEmptySlide(layoutSlide);
    // Sets the number for the first presentation slide
    presentation.setFirstSlideNumber(0);
    // Shows slide numbers for all slides
    presentation.getHeaderFooterManager().setAllSlideNumbersVisibility(true);
    // Hides the slide number for the first slide
    presentation.getSlides().get_Item(0).getHeaderFooterManager().setSlideNumberVisibility(false);
    // Saves the modified presentation
    presentation.save("output.pptx", aspose.slides.SaveFormat.Pptx);
} finally {
    if (presentation != null) {
        presentation.dispose();
    }
}