CesiumCustomPropertiesGetCustomPropertyT Method |
Get a previously added custom property.
Namespace:
AGI.Foundation.Cesium
Assembly:
AGI.Foundation.Cesium (in AGI.Foundation.Cesium.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public CesiumProperty<T> GetCustomProperty<T>(
string propertyName
)
Public Function GetCustomProperty(Of T) (
propertyName As String
) As CesiumProperty(Of T)
public:
generic<typename T>
CesiumProperty<T>^ GetCustomProperty(
String^ propertyName
)
member GetCustomProperty :
propertyName : string -> CesiumProperty<'T>
Parameters
- propertyName
- Type: SystemString
The name of the custom property.
Type Parameters
- T
- The type of the data.
Return Value
Type:
CesiumPropertyTThe previously added custom property, or
if there is no property with the given name.
See Also