Individual band styles can be grouped together into a set, which can then be assigned to a graph. Profile band sets are AeccProfileViewBandStyleSet objects stored in the AeccDocument.ProfileViewBandStyleSet collection.
The following example demonstrates creating a profile band style set and adding a band style to it:
Dim oProfileViewBandStyleSet As AeccProfileViewBandStyleSet Set oProfileViewBandStyleSet = _ oDocument.ProfileViewBandStyleSets.Add("Profile Band set") ' Add a band style we have already created to the ' band set. Call oProfileViewBandStyleSet.Add(oBandProfileDataStyle) ' Now we have a band set consisting of one band.
Data band sets are used when profile views are first created. The following sample code is taken from the topic Creating a Profile View, but this time a data band set is passed in the last parameter.
Set oProfileView = oAlignment.ProfileViews.Add( _ "Profile Style 01", _ "0", _ dOriginPt, _ oProfileViewStyle, _ oProfileViewBandStyleSet)