| MelsecFxLinksHelperReadBool 方法  | 
 
            批量读取bool类型数据,支持的类型为X,Y,S,T,C,具体的地址范围取决于PLC的类型,地址支持动态指定站号,例如:s=2;D100
            Read bool data in batches. The supported types are X, Y, S, T, C. The specific address range depends on the type of PLC, 
            The address supports dynamically specifying the station number, for example: s=2;D100
            
 
        命名空间: 
     HslCommunication.Profinet.Melsec.Helper
        程序集:
     HslCommunication (在 HslCommunication.dll 中) 版本:12.5.1.0 (12.5.1.0)
 语法
语法public static OperateResult<bool[]> ReadBool(
	IReadWriteFxLinks plc,
	string address,
	ushort length
)
Public Shared Function ReadBool ( 
	plc As IReadWriteFxLinks,
	address As String,
	length As UShort
) As OperateResult(Of Boolean())
public:
static OperateResult<array<bool>^>^ ReadBool(
	IReadWriteFxLinks^ plc, 
	String^ address, 
	unsigned short length
)
static member ReadBool : 
        plc : IReadWriteFxLinks * 
        address : string * 
        length : uint16 -> OperateResult<bool[]> 
参数
- plc
- 类型:HslCommunication.Profinet.Melsec.HelperIReadWriteFxLinks
 PLC通信对象
- address
- 类型:SystemString
 地址信息,比如X10,Y17,注意X,Y的地址是8进制的
- length
- 类型:SystemUInt16
 读取的长度
返回值
类型:
OperateResultBoolean读取结果信息
 参见
参见