[Gambas-user] Proper Class Member Type Names
Cedron Dawg
cedron at exede.net
Wed May 8 02:20:53 CEST 2019
Hey Tobi,
You confused me a little bit with that explanation. Then what does a null mean?
A Static (auto-creatable)
C
CA
CO Export Optional
Thanks,
Ced
FYI:
------------------------------
SELECT wk_components.name || '.' || class_name AS full_name
FROM
( SELECT wk_classes.name AS class_name,
wk_classes.wk_components_fk
FROM wk_classes
WHERE wk_classes.wk_creation_codes_fk = 'CO'
) AS T
INNER JOIN wk_components
ON wk_components.id = T.wk_components_fk
ORDER BY full_name
gb.report.Align
gb.report.Arrange
gb.report.Line
gb.report2.Align
gb.report2.Arrange
gb.report2.Line
gb.web.form.Color
----- Original Message -----
From: "Tobias Boege" <taboege at gmail.com>
To: "user" <user at lists.gambas-basic.org>
Sent: Tuesday, May 7, 2019 6:40:05 PM
Subject: Re: [Gambas-user] Proper Class Member Type Names
On Tue, 07 May 2019, Cedron Dawg wrote:
> Same question for creation codes:
>
> 386
> A 7
> C 810
> CA 57
> CO 7
>
> My guesses:
>
> A Array
> C Creatable
> CA Creatable and Array
> CO Creatable and Object
>
Arrays aren't special in this regard. The A stands for "auto-creatable",
which is the "Create Static" flag in the Gambas language.
"CO" being a creatable object isn't plausible either with just seven
occurrences. Apparently it mirrors the "Export Optional" flag, which
I have _never_ encountered before. (Don't know when the last time was
that I had "never encountered" something in Gambas before, but it still
happens.)
BTW, everything is creatable as long as it is not flagged "Create Private".
So you see that all these flags directly correspond to class-level syntax
elements in the Gambas language.
Regards,
Tobi
--
"There's an old saying: Don't change anything... ever!" -- Mr. Monk
----[ Gambas mailing-list is hosted by https://www.hostsharing.net ]----
More information about the User
mailing list