'宣言 Public Delegate Function AddingKmlItemDelegate( _ ByRef itemName As System.String, _ ByRef stroke As System.Nullable(Of Color), _ ByRef fill As System.Nullable(Of Color), _ ByRef trackCoords As System.Boolean _ ) As System.Boolean
public delegate System.bool AddingKmlItemDelegate( ref System.string itemName, out System.Nullable<Color> stroke, out System.Nullable<Color> fill, out System.bool trackCoords )
パラメータ
- itemName
- IN/OUT: the item name.
- stroke
- OUT: item stroke color (null uses color specified in the KML data).
- fill
- OUT: item fill color (null uses color specified in the KML data).
- trackCoords
- OUT: indicates whether the item's coordinates should be used to auto size/zoom the map.
戻り値の型
True to include an item in the map, false to exclude it.