Represents a constituent part of a PackageLayer or PackageChildLayer.

Namespace:  ESRI.ArcGISExplorer.Mapping

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public sealed class PackageChildLayer : MapItem, 
	IMapItemParent
Visual Basic (Declaration)
Public NotInheritable Class PackageChildLayer _
	Inherits MapItem _
	Implements IMapItemParent

Remarks

Layer packages and layer files can be created from group layers that contain one or more layers of information. The constituent layers within a PackageLayer are accessible using the PackageLayer.ChildItems property (returning a collection of PackageChildLayer objects).

Use the PackageChildLayer class to change the visibility and scale thresholds for a constituent child layer within a PackageLayer or PackageChildLayer.

It is possible for a PackageChildLayer to reference spatial vector data stored in an ESRI shapefile or geodatabase. You can verify if the PackageChildLayer contains tabular data using the HasTable property, and retrieve the underlying table using PackageChildLayer.Table.

You cannot programmatically create a new PackageChildLayer, it can only exist as part of a PackageLayer.

Inheritance Hierarchy

System..::.Object

  ESRI.ArcGISExplorer.Mapping..::.MapItem

    ESRI.ArcGISExplorer.Mapping..::.PackageChildLayer

See Also