Skip to main content

Zone Experimental

The Zone class represents a zone in a Kontakt program.

import { Zone } from kontakt
export class Zone {
id: Int { get }
sample: Sample? { get }

to_string() -> String
}

This class was introduced as an experimental feature in Kontakt 8.10.

Constructors

None. This class cannot be instantiated directly. Instances are returned by methods such as Program.zone_by_id, Program.add_user_zone, and ZoneList.at.

Properties

id: Int (get)

The unique identifier of the zone.

sample: Sample? (get)

The audio sample assigned to this zone.

Methods

to_string() -> (String)

Returns a string representation of the zone.