A collection of sublayer extensions belonging to a ArcGISLayerExtension.

interface SubtypeSublayerExtensionCollection<S> {
    initializedItems: ReadOnlyCollection<SubtypeSublayerExtension<SubtypeSublayerExtensionProperties>>;
    findById(id: string): S;
    findBySublayerId(id: number): S;
    forSublayer(sublayer: SubtypeSublayer): 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: SubtypeSublayer

      A sublayer.

    Returns S

    The corresponding sublayer extension.