A collection of sublayer extensions belonging to a ArcGISLayerExtension.

interface ArcGISSublayerExtensionCollection<S> {
    initializedItems: ReadOnlyCollection<ArcGISSublayerExtension<ArcGISSublayerExtensionProperties>>;
    findById(id: string): S;
    findBySublayerId(id: number): S;
    forSublayer(sublayer: Sublayer): S;
}

Type Parameters

Hierarchy (view full)

Properties

Returns a collection of the initialized items.

Methods

  • Get the sublayer extension for a given id.

    Parameters

    • id: string

      The id of the sublayer extension.

    Returns S

    The sublayer extension.

  • Get the corresponding sublayer extension for a given sublayer id.

    Parameters

    • id: number

      The id of the sublayer.

    Returns S

    The corresponding sublayer extension.

  • Gets the corresponding sublayer extension for a given sublayer.

    Parameters

    • sublayer: Sublayer

      A sublayer.

    Returns S

    The corresponding sublayer extension.