UINT
データ型STRINGを示すシステム定数
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_STRING) then
bIsStringMemberFound := TRUE; (* set flag for special string handling - consider max string length! *)
elsif (adutDataTypeInfo[iIndex_i].uiElementDataType = SYS_DATA_TYPE_INVALID) then
exit; (* No more member data types *)
end_if;
end_for;
end_if;