createSection

open fun createSection(name: String, pixels: List<Int>, parentSectionName: String = ""): Section

Return

A new section, identified by name, including pixels, with this section manager as its parent


open fun createSection(name: String, startPixel: Int, endPixel: Int, parentSectionName: String = ""): Section

Return

A new section, identified by name, starting at startPixel and ending at endPixel, with this section manager as its parent


open fun createSection(section: Section): Section