CesiumCustomProperties.GetCustomProperty<T> Method |
Get a previously added custom property.
Namespace:
AGI.Foundation.Cesium
Assembly:
AGI.Foundation.Cesium (in AGI.Foundation.Cesium.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic 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: System.String
The name of the custom property.
Type Parameters
- T
- The type of the data.
Return Value
Type:
CesiumProperty<T>The previously added custom property, or
null if there is no property with the given name.
See Also