문제

X and Requirement are existing attributes.

I want to create an attribute Z such that, for the given object, if Requirement=True, then Z={the value of attribute X}, but if Requirement=False, then Z={Object Heading and Object Text}.

What is the DXL for making this attribute? Thanks.

도움이 되었습니까?

해결책

This is untested code but try something like this: (assuming attribute z exists as text)

Module m = current
Object o


for o in m do
{
   if ((o."Requirement") == "true")
   {
       o."z" = o."x" ""
   }
   else   // requirement = false
   {
       o."z" = o."Object Heading" "\n" o."Object Text" ""

   }
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top