SYS_DATA_TYPE_UDINT

グループ

動作値

データ型

UINT

名称

データ型UDINTを示すシステム定数

GetDataTypeInfoと一緒に使用して、DUT DATA_TYPE_INFO_DUTの結果のデータ型uiElementTypeを比較できます。

    if ( bEnable ) then
		
		adutDataTypeInfo := GetDataTypeInfo(dutVariable);
		
		for iIndex_i := 0 to Elem_OfArray1D(Array1D := adutDataTypeInfo) do 
			
			if (adutDataTypeInfo[iIndex_i].uiElementDataType = SYS_DATA_TYPE_UDINT) then	
				bIsUdintMemberFound := TRUE; (* set flag for special handling of udint data *)
			elsif (adutDataTypeInfo[iIndex_i].uiElementDataType = SYS_DATA_TYPE_INVALID) then
				exit; (* No more member data types *)
			end_if;
			
		end_for;
		
    end_if;

最終修正日:2021-05-13このページに関するフィードバックお問い合わせ窓口