Code:
long A1Ptr;
dictPropId.TryGetValue("A01", out A1Ptr);
PropDefInfo[] A01PropDef = GetPropertyDefinitionInfosByEntityClassId("FILE",A1Ptr.ToSingleArray());
A01Valid = A01PropDef[0].ListValArray;
I am getting 2 errors in this segment of code, whcih is meant to access content from a "pick list".
1. "dictPropId ", "A01Vaild" and "A01PropDef " - the error message is: "is a 'field' but is used like a 'type'"
2 "GetPropertyDef initionInfosByE ntityClassId" does not exist in the current context.
How can I eliminate these errors?
Comment