Internal error occurs when getting the property of anchored frame with FM2015
Hi.
I have a plugin working with FM2015.
I use the following code to add an anchored frame and change the property.
AFrameId = F_ApiNewAnchoredObject(docId, FO_AFrame, &Loc);
props = F_ApiGetProps(docId, AFrameId);
j = F_ApiGetPropIndex(&props, FP_AnchorType);
props.val[j].propVal.u.ival = FV_ANCHOR_SUBCOL_LEFT;
j = F_ApiGetPropIndex(&props, FP_Fill);
props.val[j].propVal.u.ival = FV_FILL_WHITE;
...
F_ApiSetProps(docId, AFrameId, &props);
F_ApiDeallocatePropVals(&props);After running F_ApiGetProps(), the following internal error occurs.

This plugin works well with FM2020, but not FM2015.
Is there a way to solve this?
