섹션

프레젠테이션 섹션을 관리하는 예시—Aspose.Slides for Android via Java를 사용하여 섹션을 추가, 접근, 제거 및 이름을 바꿉니다.

섹션 추가

특정 슬라이드에서 시작하는 섹션을 만듭니다.

static void addSection() {
    Presentation presentation = new Presentation();
    try {
        ISlide slide = presentation.getSlides().get_Item(0);

        // 섹션 시작을 표시하는 슬라이드를 지정합니다.
        presentation.getSections().addSection("New Section", slide);
    } finally {
        presentation.dispose();
    }
}

섹션 접근

프레젠테이션에서 섹션 정보를 읽어옵니다.

static void accessSection() {
    Presentation presentation = new Presentation();
    try {
        ISlide slide = presentation.getSlides().get_Item(0);

        presentation.getSections().addSection("My Section", slide);

        // 인덱스로 섹션에 접근합니다.
        ISection section = presentation.getSections().get_Item(0);
        String sectionName = section.getName();
    } finally {
        presentation.dispose();
    }
}

섹션 삭제

이전에 추가된 섹션을 삭제합니다.

static void removeSection() {
    Presentation presentation = new Presentation();
    try {
        ISlide slide = presentation.getSlides().get_Item(0);

        ISection section = presentation.getSections().addSection("Temporary Section", slide);

        // 첫 번째 섹션을 제거합니다.
        presentation.getSections().removeSection(section);
    } finally {
        presentation.dispose();
    }
}

섹션 이름 바꾸기

기존 섹션의 이름을 변경합니다.

static void renameSection() {
    Presentation presentation = new Presentation();
    try {
        ISlide slide = presentation.getSlides().get_Item(0);

        presentation.getSections().addSection("Old Name", slide);

        ISection section = presentation.getSections().get_Item(0);
        section.setName("New Name");
    } finally {
        presentation.dispose();
    }
}