Machine Vision Camera SDK (DotNet) Developer Guide
End Sub
End Module
4.2.8 MvCamCtrl.NET::MyCamera::MV_CC_GetIntValueEx_NET
Get the value of camera integer type node (supports 64-bit).
API Definition
int MV_CC_GetIntValueEx_NET(
string
strKey,
ref MyCamera.MVCC_INTVALUE_EX
);
pIntValue
Parameters
strKey
[IN] Node name
pIntValue
[OUT] Obtained node value, see details in MVCC_FLOATVALUE_EX .
Return Value
Return MyCamera.MV_OK (0) on success; return Error Code on failure.
Remarks
You can call this API to get the value of camera node with integer type after connecting the device.
All the node values of "IInteger" in the list can be obtained via this API. strKey corresponds to the
Name column.
Example
C#
using System;
using System.Runtime.InteropServices;
using System.IO;
using MvCamCtrl.NET;
namespace Param
{
class Program
{
static void Main(string[] args)
{
uint nTLayerType = MyCamera.MV_GIGE_DEVICE | MyCamera.MV_USB_DEVICE;
MyCamera.MV_CC_DEVICE_INFO_LIST stDevList = new MyCamera.MV_CC_DEVICE_INFO_LIST();
int nRet = MyCamera.MV_CC_EnumDevices_NET(nTLayerType, ref stDevList);
72
    "