Creating a toolbar of globe tools
Layer.vb
' Copyright 2012 ESRI
' 
' All rights reserved under the copyright laws of the United States
' and applicable international laws, treaties, and conventions.
' 
' You may freely redistribute and use this sample code, with or
' without modification, provided you include the original copyright
' notice and use restrictions.
' 
' See the use restrictions.
' 

Imports Microsoft.VisualBasic
Imports System
Imports ESRI.ArcGIS.Analyst3D
Imports ESRI.ArcGIS.Carto
Imports ESRI.ArcGIS.GlobeCore

Namespace GlobeGraphicsToolbar
  Public Class Layer
    Private _layer As ILayer

    Public Sub New(ByVal layer As ILayer)
      _layer = layer
    End Sub

    Public Sub AddElement(ByVal element As IElement, ByVal elementProperties As IGlobeGraphicsElementProperties)
      Dim elementIndex As Integer

      Dim globeGraphicsLayer As IGlobeGraphicsLayer = TryCast(_layer, IGlobeGraphicsLayer)
      globeGraphicsLayer.AddElement(element, elementProperties, elementIndex)
    End Sub

    Public Sub RemoveElement(ByVal index As Integer)
      Dim graphicsContainer3D As IGraphicsContainer3D = TryCast(_layer, IGraphicsContainer3D)
      graphicsContainer3D.DeleteElement(Me(index))
    End Sub

    Default Public ReadOnly Property Item(ByVal i As Integer) As IElement
      Get
        Dim graphicsContainer3D As IGraphicsContainer3D = TryCast(_layer, IGraphicsContainer3D)
        Return graphicsContainer3D.Element(i)
      End Get
    End Property

    Public ReadOnly Property ElementCount() As Integer
      Get
        Dim graphicsContainer3D As IGraphicsContainer3D = TryCast(_layer, IGraphicsContainer3D)
        Return graphicsContainer3D.ElementCount
      End Get
    End Property
  End Class
End Namespace