GetCustomPropertyValue

GetCustomPropertyValue(string, out bool)

Gets a named boolean value from the custom properties.

public void GetCustomPropertyValue(string name, out bool value)
ParameterTypeDescription
nameStringName of the custom property to get
valueBoolean&Custom property value

See Also


GetCustomPropertyValue(string, out int)

Gets a named integer value from the custom properties.

public void GetCustomPropertyValue(string name, out int value)
ParameterTypeDescription
nameStringName of the custom property to get
valueInt32&Custom property value

See Also


GetCustomPropertyValue(string, out DateTime)

Gets a named DateTime value from the custom properties.

public void GetCustomPropertyValue(string name, out DateTime value)
ParameterTypeDescription
nameStringName of the custom property to get
valueDateTime&Custom property value

See Also


GetCustomPropertyValue(string, out string)

Gets a named string value from the custom properties.

public void GetCustomPropertyValue(string name, out string value)
ParameterTypeDescription
nameStringName of the custom property to get
valueString&Custom property value

See Also


GetCustomPropertyValue(string, out float)

Gets a named float value from the custom properties.

public void GetCustomPropertyValue(string name, out float value)
ParameterTypeDescription
nameStringName of the custom property to get
valueSingle&Custom property value

See Also


GetCustomPropertyValue(string, out double)

Gets a named double value from the custom properties.

public void GetCustomPropertyValue(string name, out double value)
ParameterTypeDescription
nameStringName of the custom property to get.
valueDouble&Custom property value

See Also