Board index » delphi » publish user-defined property types ?
pau...@sol.wohnheim.uni-ulm.de (Manfred Paula)
![]() Delphi Developer |
Sun, 13 Dec 1998 03:00:00 GMT
publish user-defined property types ?I've got the following problem (Delphi 1.0): I want to publish a property of type tVec3d (= array[0..2] of Real;) . The same error occurs, when I want to publish an array property. Example program: unit Propedi1; type tVec3d = array[0..2] of Real; TMyClass = class ______ --------------------------------------------------- |