<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body smarttemplateinserted="true" text="#000000" bgcolor="#FFFFFF">
<div id="smartTemplate4-template">Hi Fpc-pascal Users,<br>
<br>
<blockquote type="cite"
cite="mid:CAFMUeB9bHUiYB1gDob8gU0QOwK2MNg5MXmR3HxQxFAy=fHugqw@mail.gmail.com">
<div dir="auto">I simply rely on my IDE (Lazarus, Visual
Studio) to complete long identifier names for me so that I
don't have to. *shrugs*</div>
</blockquote>
<p><br>
</p>
<p> but you still need to read the identifiers and when they are
too long, that takes time, too</p>
<p><br>
</p>
<blockquote type="cite">
<pre wrap="">How does that look?</pre>
</blockquote>
<br>
No idea how it looked, but it could look like this:<br>
<br>
uses definingUnit.TTileSortingFlag;<br>
<br>
-> you need to write TTileSortingFlag.Static<br>
<br>
uses definingUnit.TTileSortingFlag.Static;<br>
<br>
or <br>
<br>
uses definingUnit.TTileSortingFlag.*;<br>
<br>
-> you can just write Static<br>
<br>
<br>
Alternatively:<br>
<br>
with TTileSortingFlag do <br>
<br>
to just write Static<br>
Bye,<br>
Benito </div>
<br>
<br>
</body>
</html>