Autocompletion for structures fields
Posted: Wed Nov 04, 2009 8:38 pm
I saw the autocompletion for structures/interfaces works for the instances of the structures/interfaces, not the definition of the structure itself.
But in the case of the OffsetOf() would be nice to have it. I would say one is expecting it to pop up... so maybe it should extended to the structure's definition too ?
Code: Select all
Structure T_TEST
field1.i
field2.i
field3.i
EndStructure
Define val, ttt.T_TEST
ttt\field2 = 1 ; ttt\ < fields are listed
val = OffsetOf(T_TEST\field2 ) ; T_TEST\ < fields are NOT listed
But in the case of the OffsetOf() would be nice to have it. I would say one is expecting it to pop up... so maybe it should extended to the structure's definition too ?