Free Touch Pricker
    Preparing search index...

    Interface BlockOwnership

    Ownership of a block

    AbstractBlock objects can be collected together within an .AbstractContainer. Each block stores a reference to its container along with a numeric index representing its position within that container.

    interface BlockOwnership {
        container: Notifiable;
        index: number;
    }
    Index

    Properties

    Properties

    container: Notifiable

    Container of the block.

    index: number

    Index within the container. Indices start counting at one and increase to the length of the container.