GetParamFloat() публичный Метод

Get camera's parameter as float value.

See CameraParameter class for the list of some possible configuration parameters. See XIMEA documentation for the complete list of supported parameters.

An error occurred while communicating with a camera. See error /// message for additional information. No camera was opened, so can not access its methods.
public GetParamFloat ( string parameterName ) : float
parameterName string Parameter name to get from camera.
Результат float
Пример #1
0
 /// <summary>
 /// Get camera's parameter as float value.
 /// </summary>
 ///
 /// <param name="parameterName">Parameter name to get from camera.</param>
 ///
 /// <returns>Returns float value of the requested parameter.</returns>
 ///
 /// <remarks><para><note>The call is redirected to <see cref="XimeaCamera.GetParamFloat"/>.</note></para></remarks>
 ///
 public float GetParamFloat(string parameterName)
 {
     return(camera.GetParamFloat(parameterName));
 }