~ubuntu-branches/ubuntu/saucy/lazarus/saucy

« back to all changes in this revision

Viewing changes to docs/chm/fcl.xct

  • Committer: Package Import Robot
  • Author(s): Paul Gevers, Abou Al Montacir, Bart Martens, Paul Gevers
  • Date: 2013-06-08 14:12:17 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20130608141217-7k0cy9id8ifcnutc
Tags: 1.0.8+dfsg-1
[ Abou Al Montacir ]
* New upstream major release and multiple maintenace release offering many
  fixes and new features marking a new milestone for the Lazarus development
  and its stability level.
  - The detailed list of changes can be found here:
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_release_notes
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_fixes_branch
* LCL changes:
  - LCL is now a normal package.
      + Platform independent parts of the LCL are now in the package LCLBase
      + LCL is automatically recompiled when switching the target platform,
        unless pre-compiled binaries for this target are already installed.
      + No impact on existing projects.
      + Linker options needed by LCL are no more added to projects that do
        not use the LCL package.
  - Minor changes in LCL basic classes behaviour
      + TCustomForm.Create raises an exception if a form resource is not
        found.
      + TNotebook and TPage: a new implementation of these classes was added.
      + TDBNavigator: It is now possible to have focusable buttons by setting
        Options = [navFocusableButtons] and TabStop = True, useful for
        accessibility and for devices with neither mouse nor touch screen.
      + Names of TControlBorderSpacing.GetSideSpace and GetSpace were swapped
        and are now consistent. GetSideSpace = Around + GetSpace.
      + TForm.WindowState=wsFullscreen was added
      + TCanvas.TextFitInfo was added to calculate how many characters will
        fit into a specified Width. Useful for word-wrapping calculations.
      + TControl.GetColorResolvingParent and
        TControl.GetRGBColorResolvingParent were added, simplifying the work
        to obtain the final color of the control while resolving clDefault
        and the ParentColor.
      + LCLIntf.GetTextExtentExPoint now has a good default implementation
        which works in any platform not providing a specific implementation.
        However, Widgetset specific implementation is better, when available.
      + TTabControl was reorganized. Now it has the correct class hierarchy
        and inherits from TCustomTabControl as it should.
  - New unit in the LCL:
      + lazdialogs.pas: adds non-native versions of various native dialogs,
        for example TLazOpenDialog, TLazSaveDialog, TLazSelectDirectoryDialog.
        It is used by widgetsets which either do not have a native dialog, or
        do not wish to use it because it is limited. These dialogs can also be
        used by user applications directly.
      + lazdeviceapis.pas: offers an interface to more hardware devices such
        as the accelerometer, GPS, etc. See LazDeviceAPIs
      + lazcanvas.pas: provides a TFPImageCanvas descendent implementing
        drawing in a LCL-compatible way, but 100% in Pascal.
      + lazregions.pas. LazRegions is a wholly Pascal implementation of
        regions for canvas clipping, event clipping, finding in which control
        of a region tree one an event should reach, for drawing polygons, etc.
      + customdrawncontrols.pas, customdrawndrawers.pas,
        customdrawn_common.pas, customdrawn_android.pas and
        customdrawn_winxp.pas: are the Lazarus Custom Drawn Controls -controls
        which imitate the standard LCL ones, but with the difference that they
        are non-native and support skinning.
  - New APIs added to the LCL to improve support of accessibility software
    such as screen readers.
* IDE changes:
  - Many improvments.
  - The detailed list of changes can be found here:
    http://wiki.lazarus.freepascal.org/New_IDE_features_since#v1.0_.282012-08-29.29
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_release_notes#IDE_Changes
* Debugger / Editor changes:
  - Added pascal sources and breakpoints to the disassembler
  - Added threads dialog.
* Components changes:
  - TAChart: many fixes and new features
  - CodeTool: support Delphi style generics and new syntax extensions.
  - AggPas: removed to honor free licencing. (Closes: Bug#708695)
[Bart Martens]
* New debian/watch file fixing issues with upstream RC release.
[Abou Al Montacir]
* Avoid changing files in .pc hidden directory, these are used by quilt for
  internal purpose and could lead to surprises during build.
[Paul Gevers]
* Updated get-orig-source target and it compinion script orig-tar.sh so that they
  repack the source file, allowing bug 708695 to be fixed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# FPDoc Content File
 
2
:link tree
 
3
#fcl index.html
 
4
 iostream iostream/index.html
 
5
  TIOSType iostream/tiostype.html
 
6
  EIOStreamError iostream/eiostreamerror.html
 
7
  TIOStream iostream/tiostream.html
 
8
   Create iostream/tiostream.create.html
 
9
   Read iostream/tiostream.read.html
 
10
   Write iostream/tiostream.write.html
 
11
   Seek iostream/tiostream.seek.html
 
12
 Pipes pipes/index.html
 
13
  EPipeMsg pipes/epipemsg.html
 
14
  ENoSeekMsg pipes/enoseekmsg.html
 
15
  EPipeError pipes/epipeerror.html
 
16
  EPipeSeek pipes/epipeseek.html
 
17
  EPipeCreation pipes/epipecreation.html
 
18
  TInputPipeStream pipes/tinputpipestream.html
 
19
   Destroy pipes/tinputpipestream.destroy.html
 
20
   Write pipes/tinputpipestream.write.html
 
21
   Seek pipes/tinputpipestream.seek.html
 
22
   Read pipes/tinputpipestream.read.html
 
23
   NumBytesAvailable pipes/tinputpipestream.numbytesavailable.html
 
24
  TOutputPipeStream pipes/toutputpipestream.html
 
25
   Destroy pipes/toutputpipestream.destroy.html
 
26
   Seek pipes/toutputpipestream.seek.html
 
27
   Read pipes/toutputpipestream.read.html
 
28
  CreatePipeHandles pipes/createpipehandles.html
 
29
  CreatePipeStreams pipes/createpipestreams.html
 
30
 StreamIO streamio/index.html
 
31
  AssignStream streamio/assignstream.html
 
32
  GetStream streamio/getstream.html
 
33
 process process/index.html
 
34
  TProcessOption process/tprocessoption.html
 
35
  TShowWindowOptions process/tshowwindowoptions.html
 
36
  TStartupOption process/tstartupoption.html
 
37
  TProcessPriority process/tprocesspriority.html
 
38
  TProcessOptions process/tprocessoptions.html
 
39
  TStartupOptions process/tstartupoptions.html
 
40
  TProcessForkEvent process/tprocessforkevent.html
 
41
  TProcess process/tprocess.html
 
42
   Create process/tprocess.create.html
 
43
   Destroy process/tprocess.destroy.html
 
44
   Execute process/tprocess.execute.html
 
45
   CloseInput process/tprocess.closeinput.html
 
46
   CloseOutput process/tprocess.closeoutput.html
 
47
   CloseStderr process/tprocess.closestderr.html
 
48
   Resume process/tprocess.resume.html
 
49
   Suspend process/tprocess.suspend.html
 
50
   Terminate process/tprocess.terminate.html
 
51
   WaitOnExit process/tprocess.waitonexit.html
 
52
   WindowRect process/tprocess.windowrect.html
 
53
   Handle process/tprocess.handle.html
 
54
   ProcessHandle process/tprocess.processhandle.html
 
55
   ThreadHandle process/tprocess.threadhandle.html
 
56
   ProcessID process/tprocess.processid.html
 
57
   ThreadID process/tprocess.threadid.html
 
58
   Input process/tprocess.input.html
 
59
   Output process/tprocess.output.html
 
60
   Stderr process/tprocess.stderr.html
 
61
   ExitStatus process/tprocess.exitstatus.html
 
62
   InheritHandles process/tprocess.inherithandles.html
 
63
   OnForkEvent process/tprocess.onforkevent.html
 
64
   Active process/tprocess.active.html
 
65
   ApplicationName process/tprocess.applicationname.html
 
66
   CommandLine process/tprocess.commandline.html
 
67
   Executable process/tprocess.executable.html
 
68
   Parameters process/tprocess.parameters.html
 
69
   ConsoleTitle process/tprocess.consoletitle.html
 
70
   CurrentDirectory process/tprocess.currentdirectory.html
 
71
   Desktop process/tprocess.desktop.html
 
72
   Environment process/tprocess.environment.html
 
73
   Options process/tprocess.options.html
 
74
   Priority process/tprocess.priority.html
 
75
   StartupOptions process/tprocess.startupoptions.html
 
76
   Running process/tprocess.running.html
 
77
   ShowWindow process/tprocess.showwindow.html
 
78
   WindowColumns process/tprocess.windowcolumns.html
 
79
   WindowHeight process/tprocess.windowheight.html
 
80
   WindowLeft process/tprocess.windowleft.html
 
81
   WindowRows process/tprocess.windowrows.html
 
82
   WindowTop process/tprocess.windowtop.html
 
83
   WindowWidth process/tprocess.windowwidth.html
 
84
   FillAttribute process/tprocess.fillattribute.html
 
85
   XTermProgram process/tprocess.xtermprogram.html
 
86
  EProcess process/eprocess.html
 
87
  CommandToList process/commandtolist.html
 
88
  DetectXTerm process/detectxterm.html
 
89
  RunCommandIndir process/runcommandindir.html
 
90
  RunCommand process/runcommand.html
 
91
  TryTerminals process/tryterminals.html
 
92
  XTermProgram process/xtermprogram.html
 
93
 dbugintf dbugintf/index.html
 
94
  debugservers dbugintf/debugservers.html
 
95
  SProcessID dbugintf/index-1.html#sprocessid
 
96
  SEntering dbugintf/index-1.html#sentering
 
97
  SExiting dbugintf/index-1.html#sexiting
 
98
  SSeparator dbugintf/index-1.html#sseparator
 
99
  SServerStartFailed dbugintf/index-1.html#sserverstartfailed
 
100
  SendError dbugintf/senderror.html
 
101
  TDebugLevel dbugintf/tdebuglevel.html
 
102
  SendBoolean dbugintf/sendboolean.html
 
103
  SendDateTime dbugintf/senddatetime.html
 
104
  SendInteger dbugintf/sendinteger.html
 
105
  SendPointer dbugintf/sendpointer.html
 
106
  SendDebugEx dbugintf/senddebugex.html
 
107
  SendDebug dbugintf/senddebug.html
 
108
  SendMethodEnter dbugintf/sendmethodenter.html
 
109
  SendMethodExit dbugintf/sendmethodexit.html
 
110
  SendSeparator dbugintf/sendseparator.html
 
111
  SendDebugFmt dbugintf/senddebugfmt.html
 
112
  SendDebugFmtEx dbugintf/senddebugfmtex.html
 
113
  SetDebuggingEnabled dbugintf/setdebuggingenabled.html
 
114
  GetDebuggingEnabled dbugintf/getdebuggingenabled.html
 
115
  StartDebugServer dbugintf/startdebugserver.html
 
116
  InitDebugClient dbugintf/initdebugclient.html
 
117
 contnrs contnrs/index.html
 
118
  MaxHashListSize contnrs/maxhashlistsize.html
 
119
  MaxHashStrSize contnrs/maxhashstrsize.html
 
120
  MaxHashTableSize contnrs/maxhashtablesize.html
 
121
  MaxItemsPerHash contnrs/maxitemsperhash.html
 
122
  TObjectListCallback contnrs/tobjectlistcallback.html
 
123
  TObjectListStaticCallback contnrs/tobjectliststaticcallback.html
 
124
  THashItem contnrs/thashitem.html
 
125
  PHashItem contnrs/phashitem.html
 
126
  PHashItemList contnrs/phashitemlist.html
 
127
  THashItemList contnrs/thashitemlist.html
 
128
  PHashTable contnrs/phashtable.html
 
129
  THashTable contnrs/thashtable.html
 
130
  THashFunction contnrs/thashfunction.html
 
131
  THTCustomNodeClass contnrs/thtcustomnodeclass.html
 
132
  THTNode contnrs/thtnode.html
 
133
  TDataIteratorMethod contnrs/tdataiteratormethod.html
 
134
  TIteratorMethod contnrs/titeratormethod.html
 
135
  TStringIteratorMethod contnrs/tstringiteratormethod.html
 
136
  TObjectIteratorMethod contnrs/tobjectiteratormethod.html
 
137
  TBucketItem contnrs/tbucketitem.html
 
138
  TBucketItemArray contnrs/tbucketitemarray.html
 
139
  TBucket contnrs/tbucket.html
 
140
  PBucket contnrs/pbucket.html
 
141
  TBucketArray contnrs/tbucketarray.html
 
142
  TBucketProc contnrs/tbucketproc.html
 
143
  TBucketProcObject contnrs/tbucketprocobject.html
 
144
  TBucketListSizes contnrs/tbucketlistsizes.html
 
145
  TFPObjectList contnrs/tfpobjectlist.html
 
146
   Create contnrs/tfpobjectlist.create.html
 
147
   Destroy contnrs/tfpobjectlist.destroy.html
 
148
   Clear contnrs/tfpobjectlist.clear.html
 
149
   Add contnrs/tfpobjectlist.add.html
 
150
   Delete contnrs/tfpobjectlist.delete.html
 
151
   Exchange contnrs/tfpobjectlist.exchange.html
 
152
   Expand contnrs/tfpobjectlist.expand.html
 
153
   Extract contnrs/tfpobjectlist.extract.html
 
154
   Remove contnrs/tfpobjectlist.remove.html
 
155
   IndexOf contnrs/tfpobjectlist.indexof.html
 
156
   FindInstanceOf contnrs/tfpobjectlist.findinstanceof.html
 
157
   Insert contnrs/tfpobjectlist.insert.html
 
158
   First contnrs/tfpobjectlist.first.html
 
159
   Last contnrs/tfpobjectlist.last.html
 
160
   Move contnrs/tfpobjectlist.move.html
 
161
   Assign contnrs/tfpobjectlist.assign.html
 
162
   Pack contnrs/tfpobjectlist.pack.html
 
163
   Sort contnrs/tfpobjectlist.sort.html
 
164
   ForEachCall contnrs/tfpobjectlist.foreachcall.html
 
165
   Capacity contnrs/tfpobjectlist.capacity.html
 
166
   Count contnrs/tfpobjectlist.count.html
 
167
   OwnsObjects contnrs/tfpobjectlist.ownsobjects.html
 
168
   Items contnrs/tfpobjectlist.items.html
 
169
   List contnrs/tfpobjectlist.list.html
 
170
  TObjectList contnrs/tobjectlist.html
 
171
   create contnrs/tobjectlist.create.html
 
172
   Add contnrs/tobjectlist.add.html
 
173
   Extract contnrs/tobjectlist.extract.html
 
174
   Remove contnrs/tobjectlist.remove.html
 
175
   IndexOf contnrs/tobjectlist.indexof.html
 
176
   FindInstanceOf contnrs/tobjectlist.findinstanceof.html
 
177
   Insert contnrs/tobjectlist.insert.html
 
178
   First contnrs/tobjectlist.first.html
 
179
   Last contnrs/tobjectlist.last.html
 
180
   OwnsObjects contnrs/tobjectlist.ownsobjects.html
 
181
   Items contnrs/tobjectlist.items.html
 
182
  TComponentList contnrs/tcomponentlist.html
 
183
   Destroy contnrs/tcomponentlist.destroy.html
 
184
   Add contnrs/tcomponentlist.add.html
 
185
   Extract contnrs/tcomponentlist.extract.html
 
186
   Remove contnrs/tcomponentlist.remove.html
 
187
   IndexOf contnrs/tcomponentlist.indexof.html
 
188
   First contnrs/tcomponentlist.first.html
 
189
   Last contnrs/tcomponentlist.last.html
 
190
   Insert contnrs/tcomponentlist.insert.html
 
191
   Items contnrs/tcomponentlist.items.html
 
192
  TClassList contnrs/tclasslist.html
 
193
   Add contnrs/tclasslist.add.html
 
194
   Extract contnrs/tclasslist.extract.html
 
195
   Remove contnrs/tclasslist.remove.html
 
196
   IndexOf contnrs/tclasslist.indexof.html
 
197
   First contnrs/tclasslist.first.html
 
198
   Last contnrs/tclasslist.last.html
 
199
   Insert contnrs/tclasslist.insert.html
 
200
   Items contnrs/tclasslist.items.html
 
201
  TOrderedList contnrs/torderedlist.html
 
202
   Create contnrs/torderedlist.create.html
 
203
   Destroy contnrs/torderedlist.destroy.html
 
204
   Count contnrs/torderedlist.count.html
 
205
   AtLeast contnrs/torderedlist.atleast.html
 
206
   Push contnrs/torderedlist.push.html
 
207
   Pop contnrs/torderedlist.pop.html
 
208
   Peek contnrs/torderedlist.peek.html
 
209
  TStack contnrs/tstack.html
 
210
  TObjectStack contnrs/tobjectstack.html
 
211
   Push contnrs/tobjectstack.push.html
 
212
   Pop contnrs/tobjectstack.pop.html
 
213
   Peek contnrs/tobjectstack.peek.html
 
214
  TQueue contnrs/tqueue.html
 
215
  TObjectQueue contnrs/tobjectqueue.html
 
216
   Push contnrs/tobjectqueue.push.html
 
217
   Pop contnrs/tobjectqueue.pop.html
 
218
   Peek contnrs/tobjectqueue.peek.html
 
219
  TFPHashList contnrs/tfphashlist.html
 
220
   Create contnrs/tfphashlist.create.html
 
221
   Destroy contnrs/tfphashlist.destroy.html
 
222
   Add contnrs/tfphashlist.add.html
 
223
   Clear contnrs/tfphashlist.clear.html
 
224
   NameOfIndex contnrs/tfphashlist.nameofindex.html
 
225
   HashOfIndex contnrs/tfphashlist.hashofindex.html
 
226
   GetNextCollision contnrs/tfphashlist.getnextcollision.html
 
227
   Delete contnrs/tfphashlist.delete.html
 
228
   Error contnrs/tfphashlist.error.html
 
229
   Expand contnrs/tfphashlist.expand.html
 
230
   Extract contnrs/tfphashlist.extract.html
 
231
   IndexOf contnrs/tfphashlist.indexof.html
 
232
   Find contnrs/tfphashlist.find.html
 
233
   FindIndexOf contnrs/tfphashlist.findindexof.html
 
234
   FindWithHash contnrs/tfphashlist.findwithhash.html
 
235
   Rename contnrs/tfphashlist.rename.html
 
236
   Remove contnrs/tfphashlist.remove.html
 
237
   Pack contnrs/tfphashlist.pack.html
 
238
   ShowStatistics contnrs/tfphashlist.showstatistics.html
 
239
   ForEachCall contnrs/tfphashlist.foreachcall.html
 
240
   Capacity contnrs/tfphashlist.capacity.html
 
241
   Count contnrs/tfphashlist.count.html
 
242
   Items contnrs/tfphashlist.items.html
 
243
   List contnrs/tfphashlist.list.html
 
244
   Strs contnrs/tfphashlist.strs.html
 
245
  TFPHashObject contnrs/tfphashobject.html
 
246
   CreateNotOwned contnrs/tfphashobject.createnotowned.html
 
247
   Create contnrs/tfphashobject.create.html
 
248
   ChangeOwner contnrs/tfphashobject.changeowner.html
 
249
   ChangeOwnerAndName contnrs/tfphashobject.changeownerandname.html
 
250
   Rename contnrs/tfphashobject.rename.html
 
251
   Name contnrs/tfphashobject.name.html
 
252
   Hash contnrs/tfphashobject.hash.html
 
253
  TFPHashObjectList contnrs/tfphashobjectlist.html
 
254
   Create contnrs/tfphashobjectlist.create.html
 
255
   Destroy contnrs/tfphashobjectlist.destroy.html
 
256
   Clear contnrs/tfphashobjectlist.clear.html
 
257
   Add contnrs/tfphashobjectlist.add.html
 
258
   NameOfIndex contnrs/tfphashobjectlist.nameofindex.html
 
259
   HashOfIndex contnrs/tfphashobjectlist.hashofindex.html
 
260
   GetNextCollision contnrs/tfphashobjectlist.getnextcollision.html
 
261
   Delete contnrs/tfphashobjectlist.delete.html
 
262
   Expand contnrs/tfphashobjectlist.expand.html
 
263
   Extract contnrs/tfphashobjectlist.extract.html
 
264
   Remove contnrs/tfphashobjectlist.remove.html
 
265
   IndexOf contnrs/tfphashobjectlist.indexof.html
 
266
   Find contnrs/tfphashobjectlist.find.html
 
267
   FindIndexOf contnrs/tfphashobjectlist.findindexof.html
 
268
   FindWithHash contnrs/tfphashobjectlist.findwithhash.html
 
269
   Rename contnrs/tfphashobjectlist.rename.html
 
270
   FindInstanceOf contnrs/tfphashobjectlist.findinstanceof.html
 
271
   Pack contnrs/tfphashobjectlist.pack.html
 
272
   ShowStatistics contnrs/tfphashobjectlist.showstatistics.html
 
273
   ForEachCall contnrs/tfphashobjectlist.foreachcall.html
 
274
   Capacity contnrs/tfphashobjectlist.capacity.html
 
275
   Count contnrs/tfphashobjectlist.count.html
 
276
   OwnsObjects contnrs/tfphashobjectlist.ownsobjects.html
 
277
   Items contnrs/tfphashobjectlist.items.html
 
278
   List contnrs/tfphashobjectlist.list.html
 
279
  THTCustomNode contnrs/thtcustomnode.html
 
280
   CreateWith contnrs/thtcustomnode.createwith.html
 
281
   HasKey contnrs/thtcustomnode.haskey.html
 
282
   Key contnrs/thtcustomnode.key.html
 
283
  TFPCustomHashTable contnrs/tfpcustomhashtable.html
 
284
   Create contnrs/tfpcustomhashtable.create.html
 
285
   CreateWith contnrs/tfpcustomhashtable.createwith.html
 
286
   Destroy contnrs/tfpcustomhashtable.destroy.html
 
287
   ChangeTableSize contnrs/tfpcustomhashtable.changetablesize.html
 
288
   Clear contnrs/tfpcustomhashtable.clear.html
 
289
   Delete contnrs/tfpcustomhashtable.delete.html
 
290
   Find contnrs/tfpcustomhashtable.find.html
 
291
   IsEmpty contnrs/tfpcustomhashtable.isempty.html
 
292
   HashFunction contnrs/tfpcustomhashtable.hashfunction.html
 
293
   Count contnrs/tfpcustomhashtable.count.html
 
294
   HashTableSize contnrs/tfpcustomhashtable.hashtablesize.html
 
295
   HashTable contnrs/tfpcustomhashtable.hashtable.html
 
296
   VoidSlots contnrs/tfpcustomhashtable.voidslots.html
 
297
   LoadFactor contnrs/tfpcustomhashtable.loadfactor.html
 
298
   AVGChainLen contnrs/tfpcustomhashtable.avgchainlen.html
 
299
   MaxChainLength contnrs/tfpcustomhashtable.maxchainlength.html
 
300
   NumberOfCollisions contnrs/tfpcustomhashtable.numberofcollisions.html
 
301
   Density contnrs/tfpcustomhashtable.density.html
 
302
  THTDataNode contnrs/thtdatanode.html
 
303
   Data contnrs/thtdatanode.data.html
 
304
  TFPDataHashTable contnrs/tfpdatahashtable.html
 
305
   Add contnrs/tfpdatahashtable.add.html
 
306
   Items contnrs/tfpdatahashtable.items.html
 
307
  THTStringNode contnrs/thtstringnode.html
 
308
   Data contnrs/thtstringnode.data.html
 
309
  TFPStringHashTable contnrs/tfpstringhashtable.html
 
310
   Add contnrs/tfpstringhashtable.add.html
 
311
   Items contnrs/tfpstringhashtable.items.html
 
312
  THTObjectNode contnrs/thtobjectnode.html
 
313
   Data contnrs/thtobjectnode.data.html
 
314
  THTOwnedObjectNode contnrs/thtownedobjectnode.html
 
315
   Destroy contnrs/thtownedobjectnode.destroy.html
 
316
  TFPObjectHashTable contnrs/tfpobjecthashtable.html
 
317
   Create contnrs/tfpobjecthashtable.create.html
 
318
   CreateWith contnrs/tfpobjecthashtable.createwith.html
 
319
   Add contnrs/tfpobjecthashtable.add.html
 
320
   Items contnrs/tfpobjecthashtable.items.html
 
321
   OwnsObjects contnrs/tfpobjecthashtable.ownsobjects.html
 
322
  EDuplicate contnrs/eduplicate.html
 
323
  EKeyNotFound contnrs/ekeynotfound.html
 
324
  TCustomBucketList contnrs/tcustombucketlist.html
 
325
   Destroy contnrs/tcustombucketlist.destroy.html
 
326
   Clear contnrs/tcustombucketlist.clear.html
 
327
   Add contnrs/tcustombucketlist.add.html
 
328
   Assign contnrs/tcustombucketlist.assign.html
 
329
   Exists contnrs/tcustombucketlist.exists.html
 
330
   Find contnrs/tcustombucketlist.find.html
 
331
   ForEach contnrs/tcustombucketlist.foreach.html
 
332
   Remove contnrs/tcustombucketlist.remove.html
 
333
   Data contnrs/tcustombucketlist.data.html
 
334
  TBucketList contnrs/tbucketlist.html
 
335
   Create contnrs/tbucketlist.create.html
 
336
  TObjectBucketList contnrs/tobjectbucketlist.html
 
337
   Add contnrs/tobjectbucketlist.add.html
 
338
   Remove contnrs/tobjectbucketlist.remove.html
 
339
   Data contnrs/tobjectbucketlist.data.html
 
340
  RSHash contnrs/rshash.html
 
341
 zstream zstream/index.html
 
342
  Tcompressionlevel zstream/tcompressionlevel.html
 
343
  Tgzopenmode zstream/tgzopenmode.html
 
344
  Tcustomzlibstream zstream/tcustomzlibstream.html
 
345
   create zstream/tcustomzlibstream.create.html
 
346
   destroy zstream/tcustomzlibstream.destroy.html
 
347
  Tcompressionstream zstream/tcompressionstream.html
 
348
   create zstream/tcompressionstream.create.html
 
349
   destroy zstream/tcompressionstream.destroy.html
 
350
   write zstream/tcompressionstream.write.html
 
351
   flush zstream/tcompressionstream.flush.html
 
352
   get_compressionrate zstream/tcompressionstream.get_compressionrate.html
 
353
  Tdecompressionstream zstream/tdecompressionstream.html
 
354
   create zstream/tdecompressionstream.create.html
 
355
   destroy zstream/tdecompressionstream.destroy.html
 
356
   read zstream/tdecompressionstream.read.html
 
357
   seek zstream/tdecompressionstream.seek.html
 
358
   get_compressionrate zstream/tdecompressionstream.get_compressionrate.html
 
359
  TGZFileStream zstream/tgzfilestream.html
 
360
   create zstream/tgzfilestream.create.html
 
361
   read zstream/tgzfilestream.read.html
 
362
   write zstream/tgzfilestream.write.html
 
363
   seek zstream/tgzfilestream.seek.html
 
364
   destroy zstream/tgzfilestream.destroy.html
 
365
  Ezliberror zstream/ezliberror.html
 
366
  Egzfileerror zstream/egzfileerror.html
 
367
  Ecompressionerror zstream/ecompressionerror.html
 
368
  Edecompressionerror zstream/edecompressionerror.html
 
369
 idea idea/index.html
 
370
  IDEAKEYSIZE idea/ideakeysize.html
 
371
  IDEABLOCKSIZE idea/ideablocksize.html
 
372
  ROUNDS idea/rounds.html
 
373
  KEYLEN idea/keylen.html
 
374
  TIDEAKey idea/tideakey.html
 
375
  TIdeaCryptKey idea/tideacryptkey.html
 
376
  TIdeaCryptData idea/tideacryptdata.html
 
377
  IDEAkey idea/ideakey.html
 
378
  IdeaCryptKey idea/ideacryptkey.html
 
379
  IdeaCryptData idea/ideacryptdata.html
 
380
  EIDEAError idea/eideaerror.html
 
381
  TIDEAStream idea/tideastream.html
 
382
   Create idea/tideastream.create.html
 
383
   Key idea/tideastream.key.html
 
384
  TIDEAEncryptStream idea/tideaencryptstream.html
 
385
   Create idea/tideaencryptstream.create.html
 
386
   Destroy idea/tideaencryptstream.destroy.html
 
387
   Write idea/tideaencryptstream.write.html
 
388
   Seek idea/tideaencryptstream.seek.html
 
389
   Flush idea/tideaencryptstream.flush.html
 
390
  TIDEADeCryptStream idea/tideadecryptstream.html
 
391
   Create idea/tideadecryptstream.create.html
 
392
   Read idea/tideadecryptstream.read.html
 
393
   Seek idea/tideadecryptstream.seek.html
 
394
  EnKeyIdea idea/enkeyidea.html
 
395
  DeKeyIdea idea/dekeyidea.html
 
396
  CipherIdea idea/cipheridea.html
 
397
 bufstream bufstream/index.html
 
398
  DefaultBufferCapacity bufstream/defaultbuffercapacity.html
 
399
  TBufStream bufstream/tbufstream.html
 
400
   Create bufstream/tbufstream.create.html
 
401
   Destroy bufstream/tbufstream.destroy.html
 
402
   Buffer bufstream/tbufstream.buffer.html
 
403
   Capacity bufstream/tbufstream.capacity.html
 
404
   BufferPos bufstream/tbufstream.bufferpos.html
 
405
   BufferSize bufstream/tbufstream.buffersize.html
 
406
  TReadBufStream bufstream/treadbufstream.html
 
407
   Seek bufstream/treadbufstream.seek.html
 
408
   Read bufstream/treadbufstream.read.html
 
409
  TWriteBufStream bufstream/twritebufstream.html
 
410
   Destroy bufstream/twritebufstream.destroy.html
 
411
   Seek bufstream/twritebufstream.seek.html
 
412
   Write bufstream/twritebufstream.write.html
 
413
 base64 base64/index.html
 
414
  TBase64DecodingMode base64/tbase64decodingmode.html
 
415
  TBase64EncodingStream base64/tbase64encodingstream.html
 
416
   Create base64/tbase64encodingstream.create.html
 
417
   Destroy base64/tbase64encodingstream.destroy.html
 
418
   Flush base64/tbase64encodingstream.flush.html
 
419
   Write base64/tbase64encodingstream.write.html
 
420
   Seek base64/tbase64encodingstream.seek.html
 
421
  TBase64DecodingStream base64/tbase64decodingstream.html
 
422
   Create base64/tbase64decodingstream.create.html
 
423
   Reset base64/tbase64decodingstream.reset.html
 
424
   Read base64/tbase64decodingstream.read.html
 
425
   Seek base64/tbase64decodingstream.seek.html
 
426
   EOF base64/tbase64decodingstream.eof.html
 
427
   Mode base64/tbase64decodingstream.mode.html
 
428
  EBase64DecodingException base64/ebase64decodingexception.html
 
429
  EncodeStringBase64 base64/encodestringbase64.html
 
430
  DecodeStringBase64 base64/decodestringbase64.html
 
431
 gettext gettext/index.html
 
432
  MOFileHeaderMagic gettext/mofileheadermagic.html
 
433
  TMOFileHeader gettext/tmofileheader.html
 
434
  TMOStringInfo gettext/tmostringinfo.html
 
435
  TMOStringTable gettext/tmostringtable.html
 
436
  PMOStringTable gettext/pmostringtable.html
 
437
  TLongWordArray gettext/tlongwordarray.html
 
438
  PLongWordArray gettext/plongwordarray.html
 
439
  TPCharArray gettext/tpchararray.html
 
440
  PPCharArray gettext/ppchararray.html
 
441
  TMOFile gettext/tmofile.html
 
442
   Create gettext/tmofile.create.html
 
443
   Destroy gettext/tmofile.destroy.html
 
444
   Translate gettext/tmofile.translate.html
 
445
  EMOFileError gettext/emofileerror.html
 
446
  GetLanguageIDs gettext/getlanguageids.html
 
447
  TranslateResourceStrings gettext/translateresourcestrings.html
 
448
  TranslateUnitResourceStrings gettext/translateunitresourcestrings.html
 
449
 ezcgi ezcgi/index.html
 
450
  hexTable ezcgi/hextable.html
 
451
  ECGIException ezcgi/ecgiexception.html
 
452
  TEZcgi ezcgi/tezcgi.html
 
453
   Create ezcgi/tezcgi.create.html
 
454
   Destroy ezcgi/tezcgi.destroy.html
 
455
   Run ezcgi/tezcgi.run.html
 
456
   WriteContent ezcgi/tezcgi.writecontent.html
 
457
   PutLine ezcgi/tezcgi.putline.html
 
458
   GetValue ezcgi/tezcgi.getvalue.html
 
459
   DoPost ezcgi/tezcgi.dopost.html
 
460
   DoGet ezcgi/tezcgi.doget.html
 
461
   Values ezcgi/tezcgi.values.html
 
462
   Names ezcgi/tezcgi.names.html
 
463
   Variables ezcgi/tezcgi.variables.html
 
464
   VariableCount ezcgi/tezcgi.variablecount.html
 
465
   Name ezcgi/tezcgi.name.html
 
466
   Email ezcgi/tezcgi.email.html
 
467
 pooledmm pooledmm/index.html
 
468
  PPooledMemManagerItem pooledmm/ppooledmemmanageritem.html
 
469
  TPooledMemManagerItem pooledmm/tpooledmemmanageritem.html
 
470
  TEnumItemsMethod pooledmm/tenumitemsmethod.html
 
471
  TPooledMemManager pooledmm/tpooledmemmanager.html
 
472
   MinimumFreeCount pooledmm/tpooledmemmanager.minimumfreecount.html
 
473
   MaximumFreeCountRatio pooledmm/tpooledmemmanager.maximumfreecountratio.html
 
474
   Count pooledmm/tpooledmemmanager.count.html
 
475
   FreeCount pooledmm/tpooledmemmanager.freecount.html
 
476
   AllocatedCount pooledmm/tpooledmemmanager.allocatedcount.html
 
477
   FreedCount pooledmm/tpooledmemmanager.freedcount.html
 
478
   Clear pooledmm/tpooledmemmanager.clear.html
 
479
   Create pooledmm/tpooledmemmanager.create.html
 
480
   Destroy pooledmm/tpooledmemmanager.destroy.html
 
481
  TNonFreePooledMemManager pooledmm/tnonfreepooledmemmanager.html
 
482
   ClearOnCreate pooledmm/tnonfreepooledmemmanager.clearoncreate.html
 
483
   ItemSize pooledmm/tnonfreepooledmemmanager.itemsize.html
 
484
   Clear pooledmm/tnonfreepooledmemmanager.clear.html
 
485
   Create pooledmm/tnonfreepooledmemmanager.create.html
 
486
   Destroy pooledmm/tnonfreepooledmemmanager.destroy.html
 
487
   NewItem pooledmm/tnonfreepooledmemmanager.newitem.html
 
488
   EnumerateItems pooledmm/tnonfreepooledmemmanager.enumerateitems.html
 
489
 dbugmsg dbugmsg/index.html
 
490
  DebugServerID dbugmsg/debugserverid.html
 
491
  lctStop dbugmsg/lctstop.html
 
492
  lctInformation dbugmsg/lctinformation.html
 
493
  lctWarning dbugmsg/lctwarning.html
 
494
  lctError dbugmsg/lcterror.html
 
495
  lctIdentify dbugmsg/lctidentify.html
 
496
  TDebugMessage dbugmsg/tdebugmessage.html
 
497
  ReadDebugMessageFromStream dbugmsg/readdebugmessagefromstream.html
 
498
  WriteDebugMessageToStream dbugmsg/writedebugmessagetostream.html
 
499
  DebugMessageName dbugmsg/debugmessagename.html
 
500
 streamex streamex/index.html
 
501
  TBidirBinaryObjectReader streamex/tbidirbinaryobjectreader.html
 
502
   Position streamex/tbidirbinaryobjectreader.position.html
 
503
  TBidirBinaryObjectWriter streamex/tbidirbinaryobjectwriter.html
 
504
   Position streamex/tbidirbinaryobjectwriter.position.html
 
505
  TDelphiReader streamex/tdelphireader.html
 
506
   GetDriver streamex/tdelphireader.getdriver.html
 
507
   ReadStr streamex/tdelphireader.readstr.html
 
508
   Read streamex/tdelphireader.read.html
 
509
   Position streamex/tdelphireader.position.html
 
510
  TDelphiWriter streamex/tdelphiwriter.html
 
511
   GetDriver streamex/tdelphiwriter.getdriver.html
 
512
   FlushBuffer streamex/tdelphiwriter.flushbuffer.html
 
513
   Write streamex/tdelphiwriter.write.html
 
514
   WriteStr streamex/tdelphiwriter.writestr.html
 
515
   WriteValue streamex/tdelphiwriter.writevalue.html
 
516
   Position streamex/tdelphiwriter.position.html
 
517
 inicol inicol/index.html
 
518
  KeyCount inicol/keycount.html
 
519
  SGlobal inicol/sglobal.html
 
520
  TIniCollectionItem inicol/tinicollectionitem.html
 
521
   SaveToIni inicol/tinicollectionitem.savetoini.html
 
522
   LoadFromIni inicol/tinicollectionitem.loadfromini.html
 
523
   SaveToFile inicol/tinicollectionitem.savetofile.html
 
524
   LoadFromFile inicol/tinicollectionitem.loadfromfile.html
 
525
   SectionName inicol/tinicollectionitem.sectionname.html
 
526
  TIniCollection inicol/tinicollection.html
 
527
   Load inicol/tinicollection.load.html
 
528
   Save inicol/tinicollection.save.html
 
529
   SaveToIni inicol/tinicollection.savetoini.html
 
530
   SaveToFile inicol/tinicollection.savetofile.html
 
531
   LoadFromIni inicol/tinicollection.loadfromini.html
 
532
   LoadFromFile inicol/tinicollection.loadfromfile.html
 
533
   Prefix inicol/tinicollection.prefix.html
 
534
   SectionPrefix inicol/tinicollection.sectionprefix.html
 
535
   FileName inicol/tinicollection.filename.html
 
536
   GlobalSection inicol/tinicollection.globalsection.html
 
537
  TNamedIniCollectionItem inicol/tnamedinicollectionitem.html
 
538
   UserData inicol/tnamedinicollectionitem.userdata.html
 
539
   Name inicol/tnamedinicollectionitem.name.html
 
540
  TNamedIniCollection inicol/tnamedinicollection.html
 
541
   IndexOfUserData inicol/tnamedinicollection.indexofuserdata.html
 
542
   IndexOfName inicol/tnamedinicollection.indexofname.html
 
543
   FindByName inicol/tnamedinicollection.findbyname.html
 
544
   FindByUserData inicol/tnamedinicollection.findbyuserdata.html
 
545
   NamedItems inicol/tnamedinicollection.nameditems.html
 
546
  EIniCol inicol/einicol.html
 
547
 IniFiles inifiles/index.html
 
548
  THashedStringList inifiles/thashedstringlist.html
 
549
   Create inifiles/thashedstringlist.create.html
 
550
   Destroy inifiles/thashedstringlist.destroy.html
 
551
   IndexOf inifiles/thashedstringlist.indexof.html
 
552
   IndexOfName inifiles/thashedstringlist.indexofname.html
 
553
  TIniFileKey inifiles/tinifilekey.html
 
554
   Create inifiles/tinifilekey.create.html
 
555
   Ident inifiles/tinifilekey.ident.html
 
556
   Value inifiles/tinifilekey.value.html
 
557
  TIniFileKeyList inifiles/tinifilekeylist.html
 
558
   Destroy inifiles/tinifilekeylist.destroy.html
 
559
   Clear inifiles/tinifilekeylist.clear.html
 
560
   Items inifiles/tinifilekeylist.items.html
 
561
  TIniFileSection inifiles/tinifilesection.html
 
562
   Empty inifiles/tinifilesection.empty.html
 
563
   Create inifiles/tinifilesection.create.html
 
564
   Destroy inifiles/tinifilesection.destroy.html
 
565
   Name inifiles/tinifilesection.name.html
 
566
   KeyList inifiles/tinifilesection.keylist.html
 
567
  TIniFileSectionList inifiles/tinifilesectionlist.html
 
568
   Destroy inifiles/tinifilesectionlist.destroy.html
 
569
   Clear inifiles/tinifilesectionlist.clear.html
 
570
   Items inifiles/tinifilesectionlist.items.html
 
571
  TCustomIniFile inifiles/tcustominifile.html
 
572
   Create inifiles/tcustominifile.create.html
 
573
   Destroy inifiles/tcustominifile.destroy.html
 
574
   SectionExists inifiles/tcustominifile.sectionexists.html
 
575
   ReadString inifiles/tcustominifile.readstring.html
 
576
   WriteString inifiles/tcustominifile.writestring.html
 
577
   ReadInteger inifiles/tcustominifile.readinteger.html
 
578
   WriteInteger inifiles/tcustominifile.writeinteger.html
 
579
   ReadBool inifiles/tcustominifile.readbool.html
 
580
   WriteBool inifiles/tcustominifile.writebool.html
 
581
   ReadDate inifiles/tcustominifile.readdate.html
 
582
   ReadDateTime inifiles/tcustominifile.readdatetime.html
 
583
   ReadFloat inifiles/tcustominifile.readfloat.html
 
584
   ReadTime inifiles/tcustominifile.readtime.html
 
585
   ReadBinaryStream inifiles/tcustominifile.readbinarystream.html
 
586
   WriteDate inifiles/tcustominifile.writedate.html
 
587
   WriteDateTime inifiles/tcustominifile.writedatetime.html
 
588
   WriteFloat inifiles/tcustominifile.writefloat.html
 
589
   WriteTime inifiles/tcustominifile.writetime.html
 
590
   WriteBinaryStream inifiles/tcustominifile.writebinarystream.html
 
591
   ReadSection inifiles/tcustominifile.readsection.html
 
592
   ReadSections inifiles/tcustominifile.readsections.html
 
593
   ReadSectionValues inifiles/tcustominifile.readsectionvalues.html
 
594
   EraseSection inifiles/tcustominifile.erasesection.html
 
595
   DeleteKey inifiles/tcustominifile.deletekey.html
 
596
   UpdateFile inifiles/tcustominifile.updatefile.html
 
597
   ValueExists inifiles/tcustominifile.valueexists.html
 
598
   FileName inifiles/tcustominifile.filename.html
 
599
   EscapeLineFeeds inifiles/tcustominifile.escapelinefeeds.html
 
600
   CaseSensitive inifiles/tcustominifile.casesensitive.html
 
601
   StripQuotes inifiles/tcustominifile.stripquotes.html
 
602
  TIniFile inifiles/tinifile.html
 
603
   Create inifiles/tinifile.create.html
 
604
   Destroy inifiles/tinifile.destroy.html
 
605
   ReadString inifiles/tinifile.readstring.html
 
606
   WriteString inifiles/tinifile.writestring.html
 
607
   ReadSection inifiles/tinifile.readsection.html
 
608
   ReadSectionRaw inifiles/tinifile.readsectionraw.html
 
609
   ReadSections inifiles/tinifile.readsections.html
 
610
   ReadSectionValues inifiles/tinifile.readsectionvalues.html
 
611
   EraseSection inifiles/tinifile.erasesection.html
 
612
   DeleteKey inifiles/tinifile.deletekey.html
 
613
   UpdateFile inifiles/tinifile.updatefile.html
 
614
   Stream inifiles/tinifile.stream.html
 
615
   CacheUpdates inifiles/tinifile.cacheupdates.html
 
616
  TMemIniFile inifiles/tmeminifile.html
 
617
   Create inifiles/tmeminifile.create.html
 
618
   Clear inifiles/tmeminifile.clear.html
 
619
   GetStrings inifiles/tmeminifile.getstrings.html
 
620
   Rename inifiles/tmeminifile.rename.html
 
621
   SetStrings inifiles/tmeminifile.setstrings.html
 
622
 streamcoll streamcoll/index.html
 
623
  TStreamCollectionItem streamcoll/tstreamcollectionitem.html
 
624
  TStreamCollection streamcoll/tstreamcollection.html
 
625
   LoadFromStream streamcoll/tstreamcollection.loadfromstream.html
 
626
   SaveToStream streamcoll/tstreamcollection.savetostream.html
 
627
   Streaming streamcoll/tstreamcollection.streaming.html
 
628
  EStreamColl streamcoll/estreamcoll.html
 
629
  ColWriteInteger streamcoll/colwriteinteger.html
 
630
  ColWriteBoolean streamcoll/colwriteboolean.html
 
631
  ColWriteString streamcoll/colwritestring.html
 
632
  ColWriteCurrency streamcoll/colwritecurrency.html
 
633
  ColWriteDateTime streamcoll/colwritedatetime.html
 
634
  ColWriteFloat streamcoll/colwritefloat.html
 
635
  ColReadInteger streamcoll/colreadinteger.html
 
636
  ColReadBoolean streamcoll/colreadboolean.html
 
637
  ColReadString streamcoll/colreadstring.html
 
638
  ColReadCurrency streamcoll/colreadcurrency.html
 
639
  ColReadDateTime streamcoll/colreaddatetime.html
 
640
  ColReadFloat streamcoll/colreadfloat.html
 
641
 CacheCls cachecls/index.html
 
642
  SInvalidIndex cachecls/index-1.html#sinvalidindex
 
643
  PCacheSlot cachecls/pcacheslot.html
 
644
  TCacheSlot cachecls/tcacheslot.html
 
645
  PCacheSlotArray cachecls/pcacheslotarray.html
 
646
  TCacheSlotArray cachecls/tcacheslotarray.html
 
647
  TOnIsDataEqual cachecls/tonisdataequal.html
 
648
  TOnFreeSlot cachecls/tonfreeslot.html
 
649
  ECacheError cachecls/ecacheerror.html
 
650
  TCache cachecls/tcache.html
 
651
   Create cachecls/tcache.create.html
 
652
   Destroy cachecls/tcache.destroy.html
 
653
   Add cachecls/tcache.add.html
 
654
   AddNew cachecls/tcache.addnew.html
 
655
   FindSlot cachecls/tcache.findslot.html
 
656
   IndexOf cachecls/tcache.indexof.html
 
657
   Remove cachecls/tcache.remove.html
 
658
   Data cachecls/tcache.data.html
 
659
   MRUSlot cachecls/tcache.mruslot.html
 
660
   LRUSlot cachecls/tcache.lruslot.html
 
661
   SlotCount cachecls/tcache.slotcount.html
 
662
   Slots cachecls/tcache.slots.html
 
663
   OnIsDataEqual cachecls/tcache.onisdataequal.html
 
664
   OnFreeSlot cachecls/tcache.onfreeslot.html
 
665
 eventlog eventlog/index.html
 
666
  SLogInfo eventlog/index-1.html#sloginfo
 
667
  SLogWarning eventlog/index-1.html#slogwarning
 
668
  SLogError eventlog/index-1.html#slogerror
 
669
  SLogDebug eventlog/index-1.html#slogdebug
 
670
  SLogCustom eventlog/index-1.html#slogcustom
 
671
  SErrLogFailedMsg eventlog/index-1.html#serrlogfailedmsg
 
672
  TLogType eventlog/tlogtype.html
 
673
  TLogCodeEvent eventlog/tlogcodeevent.html
 
674
  TLogCategoryEvent eventlog/tlogcategoryevent.html
 
675
  TEventLog eventlog/teventlog.html
 
676
   Destroy eventlog/teventlog.destroy.html
 
677
   EventTypeToString eventlog/teventlog.eventtypetostring.html
 
678
   RegisterMessageFile eventlog/teventlog.registermessagefile.html
 
679
   UnRegisterMessageFile eventlog/teventlog.unregistermessagefile.html
 
680
   Pause eventlog/teventlog.pause.html
 
681
   Resume eventlog/teventlog.resume.html
 
682
   Log eventlog/teventlog.log.html
 
683
   Warning eventlog/teventlog.warning.html
 
684
   Error eventlog/teventlog.error.html
 
685
   Debug eventlog/teventlog.debug.html
 
686
   Info eventlog/teventlog.info.html
 
687
   AppendContent eventlog/teventlog.appendcontent.html
 
688
   Identification eventlog/teventlog.identification.html
 
689
   LogType eventlog/teventlog.logtype.html
 
690
   Active eventlog/teventlog.active.html
 
691
   RaiseExceptionOnError eventlog/teventlog.raiseexceptiononerror.html
 
692
   DefaultEventType eventlog/teventlog.defaulteventtype.html
 
693
   FileName eventlog/teventlog.filename.html
 
694
   TimeStampFormat eventlog/teventlog.timestampformat.html
 
695
   CustomLogType eventlog/teventlog.customlogtype.html
 
696
   EventIDOffset eventlog/teventlog.eventidoffset.html
 
697
   OnGetCustomCategory eventlog/teventlog.ongetcustomcategory.html
 
698
   OnGetCustomEventID eventlog/teventlog.ongetcustomeventid.html
 
699
   OnGetCustomEvent eventlog/teventlog.ongetcustomevent.html
 
700
   Paused eventlog/teventlog.paused.html
 
701
  ELogError eventlog/elogerror.html
 
702
 syncobjs syncobjs/index.html
 
703
  INFINITE syncobjs/infinite.html
 
704
  PSecurityAttributes syncobjs/psecurityattributes.html
 
705
  TEventHandle syncobjs/teventhandle.html
 
706
  TWaitResult syncobjs/twaitresult.html
 
707
  TEvent syncobjs/tevent.html
 
708
  TSynchroObject syncobjs/tsynchroobject.html
 
709
   Acquire syncobjs/tsynchroobject.acquire.html
 
710
   Release syncobjs/tsynchroobject.release.html
 
711
  TCriticalSection syncobjs/tcriticalsection.html
 
712
   Acquire syncobjs/tcriticalsection.acquire.html
 
713
   Release syncobjs/tcriticalsection.release.html
 
714
   Enter syncobjs/tcriticalsection.enter.html
 
715
   TryEnter syncobjs/tcriticalsection.tryenter.html
 
716
   Leave syncobjs/tcriticalsection.leave.html
 
717
   Create syncobjs/tcriticalsection.create.html
 
718
   Destroy syncobjs/tcriticalsection.destroy.html
 
719
  THandleObject syncobjs/thandleobject.html
 
720
   destroy syncobjs/thandleobject.destroy.html
 
721
   Handle syncobjs/thandleobject.handle.html
 
722
   LastError syncobjs/thandleobject.lasterror.html
 
723
  TEventObject syncobjs/teventobject.html
 
724
   Create syncobjs/teventobject.create.html
 
725
   destroy syncobjs/teventobject.destroy.html
 
726
   ResetEvent syncobjs/teventobject.resetevent.html
 
727
   SetEvent syncobjs/teventobject.setevent.html
 
728
   WaitFor syncobjs/teventobject.waitfor.html
 
729
   ManualReset syncobjs/teventobject.manualreset.html
 
730
  TSimpleEvent syncobjs/tsimpleevent.html
 
731
   Create syncobjs/tsimpleevent.create.html
 
732
 CustApp custapp/index.html
 
733
  TExceptionEvent custapp/texceptionevent.html
 
734
  TEventLogTypes custapp/teventlogtypes.html
 
735
  TCustomApplication custapp/tcustomapplication.html
 
736
   Create custapp/tcustomapplication.create.html
 
737
   Destroy custapp/tcustomapplication.destroy.html
 
738
   HandleException custapp/tcustomapplication.handleexception.html
 
739
   Initialize custapp/tcustomapplication.initialize.html
 
740
   Run custapp/tcustomapplication.run.html
 
741
   ShowException custapp/tcustomapplication.showexception.html
 
742
   Terminate custapp/tcustomapplication.terminate.html
 
743
   FindOptionIndex custapp/tcustomapplication.findoptionindex.html
 
744
   GetOptionValue custapp/tcustomapplication.getoptionvalue.html
 
745
   HasOption custapp/tcustomapplication.hasoption.html
 
746
   CheckOptions custapp/tcustomapplication.checkoptions.html
 
747
   GetEnvironmentList custapp/tcustomapplication.getenvironmentlist.html
 
748
   Log custapp/tcustomapplication.log.html
 
749
   ExeName custapp/tcustomapplication.exename.html
 
750
   HelpFile custapp/tcustomapplication.helpfile.html
 
751
   Terminated custapp/tcustomapplication.terminated.html
 
752
   Title custapp/tcustomapplication.title.html
 
753
   OnException custapp/tcustomapplication.onexception.html
 
754
   ConsoleApplication custapp/tcustomapplication.consoleapplication.html
 
755
   Location custapp/tcustomapplication.location.html
 
756
   Params custapp/tcustomapplication.params.html
 
757
   ParamCount custapp/tcustomapplication.paramcount.html
 
758
   EnvironmentVariable custapp/tcustomapplication.environmentvariable.html
 
759
   OptionChar custapp/tcustomapplication.optionchar.html
 
760
   CaseSensitiveOptions custapp/tcustomapplication.casesensitiveoptions.html
 
761
   StopOnException custapp/tcustomapplication.stoponexception.html
 
762
   EventLogFilter custapp/tcustomapplication.eventlogfilter.html
 
763
  CustomApplication custapp/customapplication.html
 
764
 BlowFish blowfish/index.html
 
765
  BFRounds blowfish/bfrounds.html
 
766
  PBlowFishKey blowfish/pblowfishkey.html
 
767
  TBlowFishKey blowfish/tblowfishkey.html
 
768
  TBFBlock blowfish/tbfblock.html
 
769
  TBlowFish blowfish/tblowfish.html
 
770
   Create blowfish/tblowfish.create.html
 
771
   Encrypt blowfish/tblowfish.encrypt.html
 
772
   Decrypt blowfish/tblowfish.decrypt.html
 
773
  EBlowFishError blowfish/eblowfisherror.html
 
774
  TBlowFishStream blowfish/tblowfishstream.html
 
775
   Create blowfish/tblowfishstream.create.html
 
776
   Destroy blowfish/tblowfishstream.destroy.html
 
777
   BlowFish blowfish/tblowfishstream.blowfish.html
 
778
  TBlowFishEncryptStream blowfish/tblowfishencryptstream.html
 
779
   Destroy blowfish/tblowfishencryptstream.destroy.html
 
780
   Write blowfish/tblowfishencryptstream.write.html
 
781
   Seek blowfish/tblowfishencryptstream.seek.html
 
782
   Flush blowfish/tblowfishencryptstream.flush.html
 
783
  TBlowFishDeCryptStream blowfish/tblowfishdecryptstream.html
 
784
   Read blowfish/tblowfishdecryptstream.read.html
 
785
   Seek blowfish/tblowfishdecryptstream.seek.html
 
786
 simpleipc simpleipc/index.html
 
787
  SErrServerNotActive simpleipc/index-1.html#serrservernotactive
 
788
  SErrActive simpleipc/index-1.html#serractive
 
789
  SErrInActive simpleipc/index-1.html#serrinactive
 
790
  MsgVersion simpleipc/msgversion.html
 
791
  mtUnknown simpleipc/mtunknown.html
 
792
  mtString simpleipc/mtstring.html
 
793
  TMessageType simpleipc/tmessagetype.html
 
794
  TMsgHeader simpleipc/tmsgheader.html
 
795
  TIPCServerCommClass simpleipc/tipcservercommclass.html
 
796
  TIPCClientCommClass simpleipc/tipcclientcommclass.html
 
797
  TIPCServerComm simpleipc/tipcservercomm.html
 
798
   Create simpleipc/tipcservercomm.create.html
 
799
   Owner simpleipc/tipcservercomm.owner.html
 
800
   StartServer simpleipc/tipcservercomm.startserver.html
 
801
   StopServer simpleipc/tipcservercomm.stopserver.html
 
802
   PeekMessage simpleipc/tipcservercomm.peekmessage.html
 
803
   ReadMessage simpleipc/tipcservercomm.readmessage.html
 
804
   InstanceID simpleipc/tipcservercomm.instanceid.html
 
805
  TSimpleIPC simpleipc/tsimpleipc.html
 
806
   Active simpleipc/tsimpleipc.active.html
 
807
   ServerID simpleipc/tsimpleipc.serverid.html
 
808
  TSimpleIPCServer simpleipc/tsimpleipcserver.html
 
809
   Create simpleipc/tsimpleipcserver.create.html
 
810
   Destroy simpleipc/tsimpleipcserver.destroy.html
 
811
   StartServer simpleipc/tsimpleipcserver.startserver.html
 
812
   StopServer simpleipc/tsimpleipcserver.stopserver.html
 
813
   PeekMessage simpleipc/tsimpleipcserver.peekmessage.html
 
814
   StringMessage simpleipc/tsimpleipcserver.stringmessage.html
 
815
   GetMessageData simpleipc/tsimpleipcserver.getmessagedata.html
 
816
   MsgType simpleipc/tsimpleipcserver.msgtype.html
 
817
   MsgData simpleipc/tsimpleipcserver.msgdata.html
 
818
   InstanceID simpleipc/tsimpleipcserver.instanceid.html
 
819
   Global simpleipc/tsimpleipcserver.global.html
 
820
   OnMessage simpleipc/tsimpleipcserver.onmessage.html
 
821
  TIPCClientComm simpleipc/tipcclientcomm.html
 
822
   Create simpleipc/tipcclientcomm.create.html
 
823
   Owner simpleipc/tipcclientcomm.owner.html
 
824
   Connect simpleipc/tipcclientcomm.connect.html
 
825
   Disconnect simpleipc/tipcclientcomm.disconnect.html
 
826
   ServerRunning simpleipc/tipcclientcomm.serverrunning.html
 
827
   SendMessage simpleipc/tipcclientcomm.sendmessage.html
 
828
  TSimpleIPCClient simpleipc/tsimpleipcclient.html
 
829
   Create simpleipc/tsimpleipcclient.create.html
 
830
   Destroy simpleipc/tsimpleipcclient.destroy.html
 
831
   Connect simpleipc/tsimpleipcclient.connect.html
 
832
   Disconnect simpleipc/tsimpleipcclient.disconnect.html
 
833
   ServerRunning simpleipc/tsimpleipcclient.serverrunning.html
 
834
   SendMessage simpleipc/tsimpleipcclient.sendmessage.html
 
835
   SendStringMessage simpleipc/tsimpleipcclient.sendstringmessage.html
 
836
   SendStringMessageFmt simpleipc/tsimpleipcclient.sendstringmessagefmt.html
 
837
   ServerInstance simpleipc/tsimpleipcclient.serverinstance.html
 
838
  EIPCError simpleipc/eipcerror.html
 
839
  DefaultIPCServerClass simpleipc/defaultipcserverclass.html
 
840
  DefaultIPCClientClass simpleipc/defaultipcclientclass.html
 
841
 rttiutils rttiutils/index.html
 
842
  sPropNameDelimiter rttiutils/spropnamedelimiter.html
 
843
  TReadStrEvent rttiutils/treadstrevent.html
 
844
  TWriteStrEvent rttiutils/twritestrevent.html
 
845
  TEraseSectEvent rttiutils/terasesectevent.html
 
846
  TFindComponentEvent rttiutils/tfindcomponentevent.html
 
847
  TPropInfoList rttiutils/tpropinfolist.html
 
848
   Create rttiutils/tpropinfolist.create.html
 
849
   Destroy rttiutils/tpropinfolist.destroy.html
 
850
   Contains rttiutils/tpropinfolist.contains.html
 
851
   Find rttiutils/tpropinfolist.find.html
 
852
   Delete rttiutils/tpropinfolist.delete.html
 
853
   Intersect rttiutils/tpropinfolist.intersect.html
 
854
   Count rttiutils/tpropinfolist.count.html
 
855
   Items rttiutils/tpropinfolist.items.html
 
856
  TPropsStorage rttiutils/tpropsstorage.html
 
857
   StoreAnyProperty rttiutils/tpropsstorage.storeanyproperty.html
 
858
   LoadAnyProperty rttiutils/tpropsstorage.loadanyproperty.html
 
859
   StoreProperties rttiutils/tpropsstorage.storeproperties.html
 
860
   LoadProperties rttiutils/tpropsstorage.loadproperties.html
 
861
   LoadObjectsProps rttiutils/tpropsstorage.loadobjectsprops.html
 
862
   StoreObjectsProps rttiutils/tpropsstorage.storeobjectsprops.html
 
863
   AObject rttiutils/tpropsstorage.aobject.html
 
864
   Prefix rttiutils/tpropsstorage.prefix.html
 
865
   Section rttiutils/tpropsstorage.section.html
 
866
   OnReadString rttiutils/tpropsstorage.onreadstring.html
 
867
   OnWriteString rttiutils/tpropsstorage.onwritestring.html
 
868
   OnEraseSection rttiutils/tpropsstorage.onerasesection.html
 
869
  UpdateStoredList rttiutils/updatestoredlist.html
 
870
  CreateStoredItem rttiutils/createstoreditem.html
 
871
  ParseStoredItem rttiutils/parsestoreditem.html
 
872
  FindGlobalComponentCallBack rttiutils/findglobalcomponentcallback.html
 
873
 AVL_Tree avl_tree/index.html
 
874
  TAVLTreeNode avl_tree/tavltreenode.html
 
875
   Parent avl_tree/tavltreenode.parent.html
 
876
   Left avl_tree/tavltreenode.left.html
 
877
   Right avl_tree/tavltreenode.right.html
 
878
   Balance avl_tree/tavltreenode.balance.html
 
879
   Data avl_tree/tavltreenode.data.html
 
880
   Clear avl_tree/tavltreenode.clear.html
 
881
   TreeDepth avl_tree/tavltreenode.treedepth.html
 
882
  TBaseAVLTreeNodeManager avl_tree/tbaseavltreenodemanager.html
 
883
   DisposeNode avl_tree/tbaseavltreenodemanager.disposenode.html
 
884
   NewNode avl_tree/tbaseavltreenodemanager.newnode.html
 
885
  TAVLTreeNodeEnumerator avl_tree/tavltreenodeenumerator.html
 
886
   Create avl_tree/tavltreenodeenumerator.create.html
 
887
   MoveNext avl_tree/tavltreenodeenumerator.movenext.html
 
888
   Current avl_tree/tavltreenodeenumerator.current.html
 
889
  TAVLTree avl_tree/tavltree.html
 
890
   Root avl_tree/tavltree.root.html
 
891
   Find avl_tree/tavltree.find.html
 
892
   FindKey avl_tree/tavltree.findkey.html
 
893
   FindSuccessor avl_tree/tavltree.findsuccessor.html
 
894
   FindPrecessor avl_tree/tavltree.findprecessor.html
 
895
   FindLowest avl_tree/tavltree.findlowest.html
 
896
   FindHighest avl_tree/tavltree.findhighest.html
 
897
   FindNearest avl_tree/tavltree.findnearest.html
 
898
   FindPointer avl_tree/tavltree.findpointer.html
 
899
   FindLeftMost avl_tree/tavltree.findleftmost.html
 
900
   FindRightMost avl_tree/tavltree.findrightmost.html
 
901
   FindLeftMostKey avl_tree/tavltree.findleftmostkey.html
 
902
   FindRightMostKey avl_tree/tavltree.findrightmostkey.html
 
903
   FindLeftMostSameKey avl_tree/tavltree.findleftmostsamekey.html
 
904
   FindRightMostSameKey avl_tree/tavltree.findrightmostsamekey.html
 
905
   Add avl_tree/tavltree.add.html
 
906
   Delete avl_tree/tavltree.delete.html
 
907
   Remove avl_tree/tavltree.remove.html
 
908
   RemovePointer avl_tree/tavltree.removepointer.html
 
909
   MoveDataLeftMost avl_tree/tavltree.movedataleftmost.html
 
910
   MoveDataRightMost avl_tree/tavltree.movedatarightmost.html
 
911
   OnCompare avl_tree/tavltree.oncompare.html
 
912
   Clear avl_tree/tavltree.clear.html
 
913
   FreeAndClear avl_tree/tavltree.freeandclear.html
 
914
   FreeAndDelete avl_tree/tavltree.freeanddelete.html
 
915
   Count avl_tree/tavltree.count.html
 
916
   ConsistencyCheck avl_tree/tavltree.consistencycheck.html
 
917
   WriteReportToStream avl_tree/tavltree.writereporttostream.html
 
918
   ReportAsString avl_tree/tavltree.reportasstring.html
 
919
   SetNodeManager avl_tree/tavltree.setnodemanager.html
 
920
   Create avl_tree/tavltree.create.html
 
921
   Destroy avl_tree/tavltree.destroy.html
 
922
   GetEnumerator avl_tree/tavltree.getenumerator.html
 
923
  TAVLTreeNodeMemManager avl_tree/tavltreenodememmanager.html
 
924
   DisposeNode avl_tree/tavltreenodememmanager.disposenode.html
 
925
   NewNode avl_tree/tavltreenodememmanager.newnode.html
 
926
   MinimumFreeNode avl_tree/tavltreenodememmanager.minimumfreenode.html
 
927
   MaximumFreeNodeRatio avl_tree/tavltreenodememmanager.maximumfreenoderatio.html
 
928
   Count avl_tree/tavltreenodememmanager.count.html
 
929
   Clear avl_tree/tavltreenodememmanager.clear.html
 
930
   Create avl_tree/tavltreenodememmanager.create.html
 
931
   Destroy avl_tree/tavltreenodememmanager.destroy.html
 
932
 URIParser uriparser/index.html
 
933
  TURI uriparser/turi.html
 
934
  EncodeURI uriparser/encodeuri.html
 
935
  ParseURI uriparser/parseuri.html
 
936
  ResolveRelativeURI uriparser/resolverelativeuri.html
 
937
  URIToFilename uriparser/uritofilename.html
 
938
  FilenameToURI uriparser/filenametouri.html
 
939
  IsAbsoluteURI uriparser/isabsoluteuri.html
 
940
 daemonapp daemonapp/index.html
 
941
  Architecture daemonapp/architecture.html
 
942
  SErrNoServiceMapper daemonapp/index-1.html#serrnoservicemapper
 
943
  SErrOnlyOneMapperAllowed daemonapp/index-1.html#serronlyonemapperallowed
 
944
  SErrNothingToDo daemonapp/index-1.html#serrnothingtodo
 
945
  SErrDuplicateName daemonapp/index-1.html#serrduplicatename
 
946
  SErrUnknownDaemonClass daemonapp/index-1.html#serrunknowndaemonclass
 
947
  SErrDaemonStartFailed daemonapp/index-1.html#serrdaemonstartfailed
 
948
  SDaemonStatus daemonapp/index-1.html#sdaemonstatus
 
949
  SControlFailed daemonapp/index-1.html#scontrolfailed
 
950
  SCustomCode daemonapp/index-1.html#scustomcode
 
951
  SErrServiceManagerStartFailed daemonapp/index-1.html#serrservicemanagerstartfailed
 
952
  SErrNoDaemonForStatus daemonapp/index-1.html#serrnodaemonforstatus
 
953
  SErrNoDaemonDefForStatus daemonapp/index-1.html#serrnodaemondefforstatus
 
954
  SErrWindowClass daemonapp/index-1.html#serrwindowclass
 
955
  SErrApplicationAlreadyCreated daemonapp/index-1.html#serrapplicationalreadycreated
 
956
  SHelpUsage daemonapp/index-1.html#shelpusage
 
957
  SHelpCommand daemonapp/index-1.html#shelpcommand
 
958
  SHelpInstall daemonapp/index-1.html#shelpinstall
 
959
  SHelpUnInstall daemonapp/index-1.html#shelpuninstall
 
960
  SHelpRun daemonapp/index-1.html#shelprun
 
961
  TDaemonEvent daemonapp/tdaemonevent.html
 
962
  TDaemonOKEvent daemonapp/tdaemonokevent.html
 
963
  TDaemonOption daemonapp/tdaemonoption.html
 
964
  TDaemonOptions daemonapp/tdaemonoptions.html
 
965
  TDaemonRunMode daemonapp/tdaemonrunmode.html
 
966
  TCurrentStatus daemonapp/tcurrentstatus.html
 
967
  TCustomDaemonClass daemonapp/tcustomdaemonclass.html
 
968
  TCustomControlCodeEvent daemonapp/tcustomcontrolcodeevent.html
 
969
  TDaemonClass daemonapp/tdaemonclass.html
 
970
  TServiceType daemonapp/tservicetype.html
 
971
  TErrorSeverity daemonapp/terrorseverity.html
 
972
  TStartType daemonapp/tstarttype.html
 
973
  TCustomDaemonMapperClass daemonapp/tcustomdaemonmapperclass.html
 
974
  TGuiLoopEvent daemonapp/tguiloopevent.html
 
975
  TCustomDaemonApplicationClass daemonapp/tcustomdaemonapplicationclass.html
 
976
  TCustomDaemon daemonapp/tcustomdaemon.html
 
977
   LogMessage daemonapp/tcustomdaemon.logmessage.html
 
978
   ReportStatus daemonapp/tcustomdaemon.reportstatus.html
 
979
   Definition daemonapp/tcustomdaemon.definition.html
 
980
   DaemonThread daemonapp/tcustomdaemon.daemonthread.html
 
981
   Controller daemonapp/tcustomdaemon.controller.html
 
982
   Status daemonapp/tcustomdaemon.status.html
 
983
   Logger daemonapp/tcustomdaemon.logger.html
 
984
  TDaemon daemonapp/tdaemon.html
 
985
   OnStart daemonapp/tdaemon.onstart.html
 
986
   OnStop daemonapp/tdaemon.onstop.html
 
987
   OnPause daemonapp/tdaemon.onpause.html
 
988
   OnContinue daemonapp/tdaemon.oncontinue.html
 
989
   OnShutDown daemonapp/tdaemon.onshutdown.html
 
990
   OnExecute daemonapp/tdaemon.onexecute.html
 
991
   BeforeInstall daemonapp/tdaemon.beforeinstall.html
 
992
   AfterInstall daemonapp/tdaemon.afterinstall.html
 
993
   BeforeUnInstall daemonapp/tdaemon.beforeuninstall.html
 
994
   AfterUnInstall daemonapp/tdaemon.afteruninstall.html
 
995
   OnControlCode daemonapp/tdaemon.oncontrolcode.html
 
996
   Definition daemonapp/index.html
 
997
   Status daemonapp/index.html
 
998
  TDaemonController daemonapp/tdaemoncontroller.html
 
999
   Create daemonapp/tdaemoncontroller.create.html
 
1000
   Destroy daemonapp/tdaemoncontroller.destroy.html
 
1001
   StartService daemonapp/tdaemoncontroller.startservice.html
 
1002
   Main daemonapp/tdaemoncontroller.main.html
 
1003
   Controller daemonapp/tdaemoncontroller.controller.html
 
1004
   ReportStatus daemonapp/tdaemoncontroller.reportstatus.html
 
1005
   Daemon daemonapp/tdaemoncontroller.daemon.html
 
1006
   Params daemonapp/tdaemoncontroller.params.html
 
1007
   LastStatus daemonapp/tdaemoncontroller.laststatus.html
 
1008
   CheckPoint daemonapp/tdaemoncontroller.checkpoint.html
 
1009
  TDependency daemonapp/tdependency.html
 
1010
   Name daemonapp/tdependency.name.html
 
1011
   IsGroup daemonapp/tdependency.isgroup.html
 
1012
   Assign ms-its:rtl.chm::/classes/tpersistent.assign.html
 
1013
  TDependencies daemonapp/tdependencies.html
 
1014
   Create daemonapp/tdependencies.create.html
 
1015
   Items daemonapp/tdependencies.items.html
 
1016
  TWinBindings daemonapp/twinbindings.html
 
1017
   Create daemonapp/twinbindings.create.html
 
1018
   Destroy daemonapp/twinbindings.destroy.html
 
1019
   Assign daemonapp/twinbindings.assign.html
 
1020
   ErrCode daemonapp/twinbindings.errcode.html
 
1021
   Win32ErrCode daemonapp/twinbindings.win32errcode.html
 
1022
   Dependencies daemonapp/twinbindings.dependencies.html
 
1023
   GroupName daemonapp/twinbindings.groupname.html
 
1024
   Password daemonapp/twinbindings.password.html
 
1025
   UserName daemonapp/twinbindings.username.html
 
1026
   StartType daemonapp/twinbindings.starttype.html
 
1027
   WaitHint daemonapp/twinbindings.waithint.html
 
1028
   IDTag daemonapp/twinbindings.idtag.html
 
1029
   ServiceType daemonapp/twinbindings.servicetype.html
 
1030
   ErrorSeverity daemonapp/twinbindings.errorseverity.html
 
1031
  TDaemonDef daemonapp/tdaemondef.html
 
1032
   Create daemonapp/tdaemondef.create.html
 
1033
   Destroy daemonapp/tdaemondef.destroy.html
 
1034
   DaemonClass daemonapp/tdaemondef.daemonclass.html
 
1035
   Instance daemonapp/tdaemondef.instance.html
 
1036
   DaemonClassName daemonapp/tdaemondef.daemonclassname.html
 
1037
   Name daemonapp/tdaemondef.name.html
 
1038
   Description daemonapp/tdaemondef.description.html
 
1039
   DisplayName daemonapp/tdaemondef.displayname.html
 
1040
   RunArguments daemonapp/tdaemondef.runarguments.html
 
1041
   Options daemonapp/tdaemondef.options.html
 
1042
   Enabled daemonapp/tdaemondef.enabled.html
 
1043
   WinBindings daemonapp/tdaemondef.winbindings.html
 
1044
   OnCreateInstance daemonapp/tdaemondef.oncreateinstance.html
 
1045
   LogStatusReport daemonapp/tdaemondef.logstatusreport.html
 
1046
  TDaemonDefs daemonapp/tdaemondefs.html
 
1047
   Create daemonapp/tdaemondefs.create.html
 
1048
   IndexOfDaemonDef daemonapp/tdaemondefs.indexofdaemondef.html
 
1049
   FindDaemonDef daemonapp/tdaemondefs.finddaemondef.html
 
1050
   DaemonDefByName daemonapp/tdaemondefs.daemondefbyname.html
 
1051
   Daemons daemonapp/tdaemondefs.daemons.html
 
1052
  TCustomDaemonMapper daemonapp/tcustomdaemonmapper.html
 
1053
   Create daemonapp/tcustomdaemonmapper.create.html
 
1054
   Destroy daemonapp/tcustomdaemonmapper.destroy.html
 
1055
   DaemonDefs daemonapp/tcustomdaemonmapper.daemondefs.html
 
1056
   OnCreate daemonapp/tcustomdaemonmapper.oncreate.html
 
1057
   OnDestroy daemonapp/tcustomdaemonmapper.ondestroy.html
 
1058
   OnRun daemonapp/tcustomdaemonmapper.onrun.html
 
1059
   OnInstall daemonapp/tcustomdaemonmapper.oninstall.html
 
1060
   OnUnInstall daemonapp/tcustomdaemonmapper.onuninstall.html
 
1061
  TDaemonMapper daemonapp/tdaemonmapper.html
 
1062
   Create daemonapp/tdaemonmapper.create.html
 
1063
   CreateNew daemonapp/tdaemonmapper.createnew.html
 
1064
  TDaemonThread daemonapp/tdaemonthread.html
 
1065
   Create daemonapp/tdaemonthread.create.html
 
1066
   Execute daemonapp/tdaemonthread.execute.html
 
1067
   CheckControlMessage daemonapp/tdaemonthread.checkcontrolmessage.html
 
1068
   StopDaemon daemonapp/tdaemonthread.stopdaemon.html
 
1069
   PauseDaemon daemonapp/tdaemonthread.pausedaemon.html
 
1070
   ContinueDaemon daemonapp/tdaemonthread.continuedaemon.html
 
1071
   ShutDownDaemon daemonapp/tdaemonthread.shutdowndaemon.html
 
1072
   InterrogateDaemon daemonapp/tdaemonthread.interrogatedaemon.html
 
1073
   Daemon daemonapp/tdaemonthread.daemon.html
 
1074
  TCustomDaemonApplication daemonapp/tcustomdaemonapplication.html
 
1075
   Destroy daemonapp/tcustomdaemonapplication.destroy.html
 
1076
   ShowException daemonapp/tcustomdaemonapplication.showexception.html
 
1077
   CreateDaemon daemonapp/tcustomdaemonapplication.createdaemon.html
 
1078
   StopDaemons daemonapp/tcustomdaemonapplication.stopdaemons.html
 
1079
   InstallDaemons daemonapp/tcustomdaemonapplication.installdaemons.html
 
1080
   RunDaemons daemonapp/tcustomdaemonapplication.rundaemons.html
 
1081
   UnInstallDaemons daemonapp/tcustomdaemonapplication.uninstalldaemons.html
 
1082
   ShowHelp daemonapp/tcustomdaemonapplication.showhelp.html
 
1083
   CreateForm daemonapp/tcustomdaemonapplication.createform.html
 
1084
   OnRun daemonapp/tcustomdaemonapplication.onrun.html
 
1085
   EventLog daemonapp/tcustomdaemonapplication.eventlog.html
 
1086
   GUIMainLoop daemonapp/tcustomdaemonapplication.guimainloop.html
 
1087
   GuiHandle daemonapp/tcustomdaemonapplication.guihandle.html
 
1088
   RunMode daemonapp/tcustomdaemonapplication.runmode.html
 
1089
  TDaemonApplication daemonapp/tdaemonapplication.html
 
1090
  EDaemon daemonapp/edaemon.html
 
1091
  Application daemonapp/application.html
 
1092
  RegisterDaemonMapper daemonapp/registerdaemonmapper.html
 
1093
  RegisterDaemonClass daemonapp/registerdaemonclass.html
 
1094
  RegisterDaemonApplicationClass daemonapp/registerdaemonapplicationclass.html
 
1095
  DaemonError daemonapp/daemonerror.html
 
1096
  CurrentStatusNames daemonapp/currentstatusnames.html
 
1097
  SStatus daemonapp/sstatus.html
 
1098
  DefaultDaemonOptions daemonapp/defaultdaemonoptions.html
 
1099
  AppClass daemonapp/appclass.html
 
1100
 libtar libtar/index.html
 
1101
  FILETYPE_NAME libtar/filetype_name.html
 
1102
  ALL_PERMISSIONS libtar/all_permissions.html
 
1103
  READ_PERMISSIONS libtar/read_permissions.html
 
1104
  WRITE_PERMISSIONS libtar/write_permissions.html
 
1105
  EXECUTE_PERMISSIONS libtar/execute_permissions.html
 
1106
  TTarPermission libtar/ttarpermission.html
 
1107
  TTarPermissions libtar/ttarpermissions.html
 
1108
  TFileType libtar/tfiletype.html
 
1109
  TTarMode libtar/ttarmode.html
 
1110
  TTarModes libtar/ttarmodes.html
 
1111
  TTarDirRec libtar/ttardirrec.html
 
1112
  TTarArchive libtar/ttararchive.html
 
1113
   Create libtar/ttararchive.create.html
 
1114
   Destroy libtar/ttararchive.destroy.html
 
1115
   Reset libtar/ttararchive.reset.html
 
1116
   FindNext libtar/ttararchive.findnext.html
 
1117
   ReadFile libtar/ttararchive.readfile.html
 
1118
   GetFilePos libtar/ttararchive.getfilepos.html
 
1119
   SetFilePos libtar/ttararchive.setfilepos.html
 
1120
  TTarWriter libtar/ttarwriter.html
 
1121
   Create libtar/ttarwriter.create.html
 
1122
   Destroy libtar/ttarwriter.destroy.html
 
1123
   AddFile libtar/ttarwriter.addfile.html
 
1124
   AddStream libtar/ttarwriter.addstream.html
 
1125
   AddString libtar/ttarwriter.addstring.html
 
1126
   AddDir libtar/ttarwriter.adddir.html
 
1127
   AddSymbolicLink libtar/ttarwriter.addsymboliclink.html
 
1128
   AddLink libtar/ttarwriter.addlink.html
 
1129
   AddVolumeHeader libtar/ttarwriter.addvolumeheader.html
 
1130
   Finalize libtar/ttarwriter.finalize.html
 
1131
   Permissions libtar/ttarwriter.permissions.html
 
1132
   UID libtar/ttarwriter.uid.html
 
1133
   GID libtar/ttarwriter.gid.html
 
1134
   UserName libtar/ttarwriter.username.html
 
1135
   GroupName libtar/ttarwriter.groupname.html
 
1136
   Mode libtar/ttarwriter.mode.html
 
1137
   Magic libtar/ttarwriter.magic.html
 
1138
  PermissionString libtar/permissionstring.html
 
1139
  ConvertFilename libtar/convertfilename.html
 
1140
  FileTimeGMT libtar/filetimegmt.html
 
1141
  ClearDirRec libtar/cleardirrec.html
 
1142
 ascii85 ascii85/index.html
 
1143
  TASCII85State ascii85/tascii85state.html
 
1144
  TASCII85RingBuffer ascii85/tascii85ringbuffer.html
 
1145
   FillCount ascii85/tascii85ringbuffer.fillcount.html
 
1146
   Size ascii85/tascii85ringbuffer.size.html
 
1147
   Write ascii85/tascii85ringbuffer.write.html
 
1148
   Read ascii85/tascii85ringbuffer.read.html
 
1149
  TASCII85DecoderStream ascii85/tascii85decoderstream.html
 
1150
   Create ascii85/tascii85decoderstream.create.html
 
1151
   Decode ascii85/tascii85decoderstream.decode.html
 
1152
   Close ascii85/tascii85decoderstream.close.html
 
1153
   ClosedP ascii85/tascii85decoderstream.closedp.html
 
1154
   BExpectBoundary ascii85/tascii85decoderstream.bexpectboundary.html
 
1155
   Destroy ascii85/tascii85decoderstream.destroy.html
 
1156
   Read ascii85/tascii85decoderstream.read.html
 
1157
   Seek ascii85/tascii85decoderstream.seek.html
 
1158
  TASCII85EncoderStream ascii85/tascii85encoderstream.html
 
1159
   Create ascii85/tascii85encoderstream.create.html
 
1160
   Destroy ascii85/tascii85encoderstream.destroy.html
 
1161
   Write ascii85/tascii85encoderstream.write.html
 
1162
   Width ascii85/tascii85encoderstream.width.html
 
1163
   Boundary ascii85/tascii85encoderstream.boundary.html
 
1164
 fpTimer fptimer/index.html
 
1165
  TFPTimerDriverClass fptimer/tfptimerdriverclass.html
 
1166
  TFPCustomTimer fptimer/tfpcustomtimer.html
 
1167
   Create fptimer/tfpcustomtimer.create.html
 
1168
   Destroy fptimer/tfpcustomtimer.destroy.html
 
1169
   StartTimer fptimer/tfpcustomtimer.starttimer.html
 
1170
   StopTimer fptimer/tfpcustomtimer.stoptimer.html
 
1171
  TFPTimer fptimer/tfptimer.html
 
1172
   Enabled fptimer/tfptimer.enabled.html
 
1173
   Interval fptimer/tfptimer.interval.html
 
1174
   OnTimer fptimer/tfptimer.ontimer.html
 
1175
  TFPTimerDriver fptimer/tfptimerdriver.html
 
1176
   Create fptimer/tfptimerdriver.create.html
 
1177
   StartTimer fptimer/tfptimerdriver.starttimer.html
 
1178
   StopTimer fptimer/tfptimerdriver.stoptimer.html
 
1179
   Timer fptimer/tfptimerdriver.timer.html
 
1180
  DefaultTimerDriverClass fptimer/defaulttimerdriverclass.html
 
1181
 db db/index.html
 
1182
  dsMaxBufferCount db/dsmaxbuffercount.html
 
1183
  dsMaxStringSize db/dsmaxstringsize.html
 
1184
  YesNoChars db/yesnochars.html
 
1185
  SQLDelimiterCharacters db/sqldelimitercharacters.html
 
1186
  FieldTypetoVariantMap db/fieldtypetovariantmap.html
 
1187
  Fieldtypenames db/fieldtypenames.html
 
1188
  DefaultFieldClasses db/defaultfieldclasses.html
 
1189
  dsEditModes db/dseditmodes.html
 
1190
  dsWriteModes db/dswritemodes.html
 
1191
  LargeInt db/largeint.html
 
1192
  PLargeInt db/plargeint.html
 
1193
  TStringFieldBuffer db/tstringfieldbuffer.html
 
1194
  TDataSetState db/tdatasetstate.html
 
1195
  TDataEvent db/tdataevent.html
 
1196
  TUpdateStatus db/tupdatestatus.html
 
1197
  TUpdateStatusSet db/tupdatestatusset.html
 
1198
  TUpdateMode db/tupdatemode.html
 
1199
  TResolverResponse db/tresolverresponse.html
 
1200
  TProviderFlag db/tproviderflag.html
 
1201
  TProviderFlags db/tproviderflags.html
 
1202
  TFieldClass db/tfieldclass.html
 
1203
  TFieldType db/tfieldtype.html
 
1204
  TFieldMap db/tfieldmap.html
 
1205
  TDateTimeAlias db/tdatetimealias.html
 
1206
  PDateTimeRec db/pdatetimerec.html
 
1207
  TDateTimeRec db/tdatetimerec.html
 
1208
  TFieldAttribute db/tfieldattribute.html
 
1209
  TFieldAttributes db/tfieldattributes.html
 
1210
  TFieldKind db/tfieldkind.html
 
1211
  TFieldKinds db/tfieldkinds.html
 
1212
  TFieldNotifyEvent db/tfieldnotifyevent.html
 
1213
  TFieldGetTextEvent db/tfieldgettextevent.html
 
1214
  TFieldSetTextEvent db/tfieldsettextevent.html
 
1215
  TFieldRef db/tfieldref.html
 
1216
  TFieldChars db/tfieldchars.html
 
1217
  PLookupListRec db/plookuplistrec.html
 
1218
  TLookupListRec db/tlookuplistrec.html
 
1219
  TBlobStreamMode db/tblobstreammode.html
 
1220
  TBlobType db/tblobtype.html
 
1221
  TIndexOption db/tindexoption.html
 
1222
  TIndexOptions db/tindexoptions.html
 
1223
  TBlobData db/tblobdata.html
 
1224
  TParamBinding db/tparambinding.html
 
1225
  TParamType db/tparamtype.html
 
1226
  TParamTypes db/tparamtypes.html
 
1227
  TParamStyle db/tparamstyle.html
 
1228
  TBookmark db/tbookmark.html
 
1229
  TBookmarkStr db/tbookmarkstr.html
 
1230
  PBookmarkFlag db/pbookmarkflag.html
 
1231
  TBookmarkFlag db/tbookmarkflag.html
 
1232
  TRecordBufferBaseType db/trecordbufferbasetype.html
 
1233
  TRecordBuffer db/trecordbuffer.html
 
1234
  PBufferList db/pbufferlist.html
 
1235
  TBufferList db/tbufferlist.html
 
1236
  TBufferArray db/tbufferarray.html
 
1237
  TGetMode db/tgetmode.html
 
1238
  TGetResult db/tgetresult.html
 
1239
  TResyncMode db/tresyncmode.html
 
1240
  TDataAction db/tdataaction.html
 
1241
  TUpdateAction db/tupdateaction.html
 
1242
  TUpdateKind db/tupdatekind.html
 
1243
  TLocateOption db/tlocateoption.html
 
1244
  TLocateOptions db/tlocateoptions.html
 
1245
  TDataOperation db/tdataoperation.html
 
1246
  TDataSetNotifyEvent db/tdatasetnotifyevent.html
 
1247
  TDataSetErrorEvent db/tdataseterrorevent.html
 
1248
  TFilterOption db/tfilteroption.html
 
1249
  TFilterOptions db/tfilteroptions.html
 
1250
  TFilterRecordEvent db/tfilterrecordevent.html
 
1251
  TDatasetClass db/tdatasetclass.html
 
1252
  TPSCommandType db/tpscommandtype.html
 
1253
  TDataChangeEvent db/tdatachangeevent.html
 
1254
  TDBDatasetClass db/tdbdatasetclass.html
 
1255
  TDBTransactionClass db/tdbtransactionclass.html
 
1256
  TLoginEvent db/tloginevent.html
 
1257
  TDatabaseClass db/tdatabaseclass.html
 
1258
  EDatabaseError db/edatabaseerror.html
 
1259
  EUpdateError db/eupdateerror.html
 
1260
   Create db/eupdateerror.create.html
 
1261
   Destroy db/eupdateerror.destroy.html
 
1262
   Context db/eupdateerror.context.html
 
1263
   ErrorCode db/eupdateerror.errorcode.html
 
1264
   OriginalException db/eupdateerror.originalexception.html
 
1265
   PreviousError db/eupdateerror.previouserror.html
 
1266
  TNamedItem db/tnameditem.html
 
1267
   DisplayName db/tnameditem.displayname.html
 
1268
   Name db/tnameditem.name.html
 
1269
  TDefCollection db/tdefcollection.html
 
1270
   create db/tdefcollection.create.html
 
1271
   Find db/tdefcollection.find.html
 
1272
   GetItemNames db/tdefcollection.getitemnames.html
 
1273
   IndexOf db/tdefcollection.indexof.html
 
1274
   Dataset db/tdefcollection.dataset.html
 
1275
   Updated db/tdefcollection.updated.html
 
1276
  TFieldDef db/tfielddef.html
 
1277
   Create db/tfielddef.create.html
 
1278
   Destroy db/tfielddef.destroy.html
 
1279
   Assign db/tfielddef.assign.html
 
1280
   CreateField db/tfielddef.createfield.html
 
1281
   FieldClass db/tfielddef.fieldclass.html
 
1282
   FieldNo db/tfielddef.fieldno.html
 
1283
   InternalCalcField db/tfielddef.internalcalcfield.html
 
1284
   Required db/tfielddef.required.html
 
1285
   Attributes db/tfielddef.attributes.html
 
1286
   DataType db/tfielddef.datatype.html
 
1287
   Precision db/tfielddef.precision.html
 
1288
   Size db/tfielddef.size.html
 
1289
  TFieldDefs db/tfielddefs.html
 
1290
   Create db/tfielddefs.create.html
 
1291
   Add db/tfielddefs.add.html
 
1292
   AddFieldDef db/tfielddefs.addfielddef.html
 
1293
   Assign db/tfielddefs.assign.html
 
1294
   Find db/tfielddefs.find.html
 
1295
   Update db/tfielddefs.update.html
 
1296
   MakeNameUnique db/tfielddefs.makenameunique.html
 
1297
   HiddenFields db/tfielddefs.hiddenfields.html
 
1298
   Items db/tfielddefs.items.html
 
1299
  TLookupList db/tlookuplist.html
 
1300
   Create db/tlookuplist.create.html
 
1301
   Destroy db/tlookuplist.destroy.html
 
1302
   Add db/tlookuplist.add.html
 
1303
   Clear db/tlookuplist.clear.html
 
1304
   FirstKeyByValue db/tlookuplist.firstkeybyvalue.html
 
1305
   ValueOfKey db/tlookuplist.valueofkey.html
 
1306
   ValuesToStrings db/tlookuplist.valuestostrings.html
 
1307
  TField db/tfield.html
 
1308
   Create db/tfield.create.html
 
1309
   Destroy db/tfield.destroy.html
 
1310
   Assign db/tfield.assign.html
 
1311
   AssignValue db/tfield.assignvalue.html
 
1312
   Clear db/tfield.clear.html
 
1313
   FocusControl db/tfield.focuscontrol.html
 
1314
   GetData db/tfield.getdata.html
 
1315
   IsBlob db/tfield.isblob.html
 
1316
   IsValidChar db/tfield.isvalidchar.html
 
1317
   RefreshLookupList db/tfield.refreshlookuplist.html
 
1318
   SetData db/tfield.setdata.html
 
1319
   SetFieldType db/tfield.setfieldtype.html
 
1320
   Validate db/tfield.validate.html
 
1321
   AsBCD db/tfield.asbcd.html
 
1322
   AsBoolean db/tfield.asboolean.html
 
1323
   AsBytes db/tfield.asbytes.html
 
1324
   AsCurrency db/tfield.ascurrency.html
 
1325
   AsDateTime db/tfield.asdatetime.html
 
1326
   AsFloat db/tfield.asfloat.html
 
1327
   AsLongint db/tfield.aslongint.html
 
1328
   AsLargeInt db/tfield.aslargeint.html
 
1329
   AsInteger db/tfield.asinteger.html
 
1330
   AsString db/tfield.asstring.html
 
1331
   AsWideString db/tfield.aswidestring.html
 
1332
   AsVariant db/tfield.asvariant.html
 
1333
   AttributeSet db/tfield.attributeset.html
 
1334
   Calculated db/tfield.calculated.html
 
1335
   CanModify db/tfield.canmodify.html
 
1336
   CurValue db/tfield.curvalue.html
 
1337
   DataSet db/tfield.dataset.html
 
1338
   DataSize db/tfield.datasize.html
 
1339
   DataType db/tfield.datatype.html
 
1340
   DisplayName db/tfield.displayname.html
 
1341
   DisplayText db/tfield.displaytext.html
 
1342
   EditMask db/tfield.editmask.html
 
1343
   EditMaskPtr db/tfield.editmaskptr.html
 
1344
   FieldNo db/tfield.fieldno.html
 
1345
   IsIndexField db/tfield.isindexfield.html
 
1346
   IsNull db/tfield.isnull.html
 
1347
   Lookup db/tfield.lookup.html
 
1348
   NewValue db/tfield.newvalue.html
 
1349
   Offset db/tfield.offset.html
 
1350
   Size db/tfield.size.html
 
1351
   Text db/tfield.text.html
 
1352
   ValidChars db/tfield.validchars.html
 
1353
   Value db/tfield.value.html
 
1354
   OldValue db/tfield.oldvalue.html
 
1355
   LookupList db/tfield.lookuplist.html
 
1356
   Alignment db/tfield.alignment.html
 
1357
   CustomConstraint db/tfield.customconstraint.html
 
1358
   ConstraintErrorMessage db/tfield.constrainterrormessage.html
 
1359
   DefaultExpression db/tfield.defaultexpression.html
 
1360
   DisplayLabel db/tfield.displaylabel.html
 
1361
   DisplayWidth db/tfield.displaywidth.html
 
1362
   FieldKind db/tfield.fieldkind.html
 
1363
   FieldName db/tfield.fieldname.html
 
1364
   HasConstraints db/tfield.hasconstraints.html
 
1365
   Index db/tfield.index.html
 
1366
   ImportedConstraint db/tfield.importedconstraint.html
 
1367
   KeyFields db/tfield.keyfields.html
 
1368
   LookupCache db/tfield.lookupcache.html
 
1369
   LookupDataSet db/tfield.lookupdataset.html
 
1370
   LookupKeyFields db/tfield.lookupkeyfields.html
 
1371
   LookupResultField db/tfield.lookupresultfield.html
 
1372
   Origin db/tfield.origin.html
 
1373
   ProviderFlags db/tfield.providerflags.html
 
1374
   ReadOnly db/tfield.readonly.html
 
1375
   Required db/tfield.required.html
 
1376
   Visible db/tfield.visible.html
 
1377
   OnChange db/tfield.onchange.html
 
1378
   OnGetText db/tfield.ongettext.html
 
1379
   OnSetText db/tfield.onsettext.html
 
1380
   OnValidate db/tfield.onvalidate.html
 
1381
  TStringField db/tstringfield.html
 
1382
   Create db/tstringfield.create.html
 
1383
   SetFieldType db/tstringfield.setfieldtype.html
 
1384
   FixedChar db/tstringfield.fixedchar.html
 
1385
   Transliterate db/tstringfield.transliterate.html
 
1386
   Value db/tstringfield.value.html
 
1387
   EditMask db/tstringfield.editmask.html
 
1388
   Size db/tstringfield.size.html
 
1389
  TWideStringField db/twidestringfield.html
 
1390
   Create db/twidestringfield.create.html
 
1391
   SetFieldType db/twidestringfield.setfieldtype.html
 
1392
   Value db/twidestringfield.value.html
 
1393
  TNumericField db/tnumericfield.html
 
1394
   Create db/tnumericfield.create.html
 
1395
   Alignment db/tnumericfield.alignment.html
 
1396
   DisplayFormat db/tnumericfield.displayformat.html
 
1397
   EditFormat db/tnumericfield.editformat.html
 
1398
  TLongintField db/tlongintfield.html
 
1399
   Create db/tlongintfield.create.html
 
1400
   CheckRange db/tlongintfield.checkrange.html
 
1401
   Value db/tlongintfield.value.html
 
1402
   MaxValue db/tlongintfield.maxvalue.html
 
1403
   MinValue db/tlongintfield.minvalue.html
 
1404
  TIntegerField db/tintegerfield.html
 
1405
  TLargeintField db/tlargeintfield.html
 
1406
   Create db/tlargeintfield.create.html
 
1407
   CheckRange db/tlargeintfield.checkrange.html
 
1408
   Value db/tlargeintfield.value.html
 
1409
   MaxValue db/tlargeintfield.maxvalue.html
 
1410
   MinValue db/tlargeintfield.minvalue.html
 
1411
  TSmallintField db/tsmallintfield.html
 
1412
   Create db/tsmallintfield.create.html
 
1413
  TWordField db/twordfield.html
 
1414
   Create db/twordfield.create.html
 
1415
  TAutoIncField db/tautoincfield.html
 
1416
   Create db/tautoincfield.create.html
 
1417
  TFloatField db/tfloatfield.html
 
1418
   Create db/tfloatfield.create.html
 
1419
   CheckRange db/tfloatfield.checkrange.html
 
1420
   Value db/tfloatfield.value.html
 
1421
   Currency db/tfloatfield.currency.html
 
1422
   MaxValue db/tfloatfield.maxvalue.html
 
1423
   MinValue db/tfloatfield.minvalue.html
 
1424
   Precision db/tfloatfield.precision.html
 
1425
  TCurrencyField db/tcurrencyfield.html
 
1426
   Create db/tcurrencyfield.create.html
 
1427
   Currency db/tcurrencyfield.currency.html
 
1428
  TBooleanField db/tbooleanfield.html
 
1429
   Create db/tbooleanfield.create.html
 
1430
   Value db/tbooleanfield.value.html
 
1431
   DisplayValues db/tbooleanfield.displayvalues.html
 
1432
  TDateTimeField db/tdatetimefield.html
 
1433
   Create db/tdatetimefield.create.html
 
1434
   Value db/tdatetimefield.value.html
 
1435
   DisplayFormat db/tdatetimefield.displayformat.html
 
1436
   EditMask db/tdatetimefield.editmask.html
 
1437
  TDateField db/tdatefield.html
 
1438
   Create db/tdatefield.create.html
 
1439
  TTimeField db/ttimefield.html
 
1440
   Create db/ttimefield.create.html
 
1441
  TBinaryField db/tbinaryfield.html
 
1442
   Create db/tbinaryfield.create.html
 
1443
   Size db/tbinaryfield.size.html
 
1444
  TBytesField db/tbytesfield.html
 
1445
   Create db/tbytesfield.create.html
 
1446
  TVarBytesField db/tvarbytesfield.html
 
1447
   Create db/tvarbytesfield.create.html
 
1448
  TBCDField db/tbcdfield.html
 
1449
   Create db/tbcdfield.create.html
 
1450
   CheckRange db/tbcdfield.checkrange.html
 
1451
   Value db/tbcdfield.value.html
 
1452
   Precision db/tbcdfield.precision.html
 
1453
   Currency db/tbcdfield.currency.html
 
1454
   MaxValue db/tbcdfield.maxvalue.html
 
1455
   MinValue db/tbcdfield.minvalue.html
 
1456
   Size db/tbcdfield.size.html
 
1457
  TFMTBCDField db/tfmtbcdfield.html
 
1458
   Create db/tnumericfield.create.html
 
1459
   CheckRange db/tfmtbcdfield.checkrange.html
 
1460
   Value db/tfmtbcdfield.value.html
 
1461
   Precision db/tfmtbcdfield.precision.html
 
1462
   Currency db/tfmtbcdfield.currency.html
 
1463
   MaxValue db/tfmtbcdfield.maxvalue.html
 
1464
   MinValue db/tfmtbcdfield.minvalue.html
 
1465
   Size db/tfmtbcdfield.size.html
 
1466
  TBlobField db/tblobfield.html
 
1467
   Create db/tblobfield.create.html
 
1468
   Clear db/tblobfield.clear.html
 
1469
   IsBlob db/tblobfield.isblob.html
 
1470
   LoadFromFile db/tblobfield.loadfromfile.html
 
1471
   LoadFromStream db/tblobfield.loadfromstream.html
 
1472
   SaveToFile db/tblobfield.savetofile.html
 
1473
   SaveToStream db/tblobfield.savetostream.html
 
1474
   SetFieldType db/tblobfield.setfieldtype.html
 
1475
   BlobSize db/tblobfield.blobsize.html
 
1476
   Modified db/tblobfield.modified.html
 
1477
   Value db/tblobfield.value.html
 
1478
   Transliterate db/tblobfield.transliterate.html
 
1479
   BlobType db/tblobfield.blobtype.html
 
1480
   Size db/tblobfield.size.html
 
1481
  TMemoField db/tmemofield.html
 
1482
   Create db/tmemofield.create.html
 
1483
   Transliterate db/tmemofield.transliterate.html
 
1484
  TWideMemoField db/twidememofield.html
 
1485
   Create db/twidememofield.create.html
 
1486
   Value db/twidememofield.value.html
 
1487
  TGraphicField db/tgraphicfield.html
 
1488
   Create db/tgraphicfield.create.html
 
1489
  TVariantField db/tvariantfield.html
 
1490
   Create db/tvariantfield.create.html
 
1491
  TGuidField db/tguidfield.html
 
1492
   Create db/tguidfield.create.html
 
1493
   AsGuid db/tguidfield.asguid.html
 
1494
  TIndexDef db/tindexdef.html
 
1495
   Create db/tindexdef.create.html
 
1496
   Expression db/tindexdef.expression.html
 
1497
   Fields db/tindexdef.fields.html
 
1498
   CaseInsFields db/tindexdef.caseinsfields.html
 
1499
   DescFields db/tindexdef.descfields.html
 
1500
   Options db/tindexdef.options.html
 
1501
   Source db/tindexdef.source.html
 
1502
  TIndexDefs db/tindexdefs.html
 
1503
   Create db/tindexdefs.create.html
 
1504
   Add db/tindexdefs.add.html
 
1505
   AddIndexDef db/tindexdefs.addindexdef.html
 
1506
   Find db/tindexdefs.find.html
 
1507
   FindIndexForFields db/tindexdefs.findindexforfields.html
 
1508
   GetIndexForFields db/tindexdefs.getindexforfields.html
 
1509
   Update db/tindexdefs.update.html
 
1510
   Items db/tindexdefs.items.html
 
1511
  TCheckConstraint db/tcheckconstraint.html
 
1512
   Assign db/tcheckconstraint.assign.html
 
1513
   CustomConstraint db/tcheckconstraint.customconstraint.html
 
1514
   ErrorMessage db/tcheckconstraint.errormessage.html
 
1515
   FromDictionary db/tcheckconstraint.fromdictionary.html
 
1516
   ImportedConstraint db/tcheckconstraint.importedconstraint.html
 
1517
  TCheckConstraints db/tcheckconstraints.html
 
1518
   Create db/tcheckconstraints.create.html
 
1519
   Add db/tcheckconstraints.add.html
 
1520
   Items db/tcheckconstraints.items.html
 
1521
  TFieldsEnumerator db/tfieldsenumerator.html
 
1522
   Create db/tfieldsenumerator.create.html
 
1523
   MoveNext db/tfieldsenumerator.movenext.html
 
1524
   Current db/tfieldsenumerator.current.html
 
1525
  Tfields db/tfields.html
 
1526
   Create db/tfields.create.html
 
1527
   Destroy db/tfields.destroy.html
 
1528
   Add db/tfields.add.html
 
1529
   CheckFieldName db/tfields.checkfieldname.html
 
1530
   CheckFieldNames db/tfields.checkfieldnames.html
 
1531
   Clear db/tfields.clear.html
 
1532
   FindField db/tfields.findfield.html
 
1533
   FieldByName db/tfields.fieldbyname.html
 
1534
   FieldByNumber db/tfields.fieldbynumber.html
 
1535
   GetEnumerator db/tfields.getenumerator.html
 
1536
   GetFieldNames db/tfields.getfieldnames.html
 
1537
   IndexOf db/tfields.indexof.html
 
1538
   Remove db/tfields.remove.html
 
1539
   Count db/tfields.count.html
 
1540
   Dataset db/tfields.dataset.html
 
1541
   Fields db/tfields.fields.html
 
1542
  TParam db/tparam.html
 
1543
   Create db/tparam.create.html
 
1544
   Assign db/tparam.assign.html
 
1545
   AssignField db/tparam.assignfield.html
 
1546
   AssignToField db/tparam.assigntofield.html
 
1547
   AssignFieldValue db/tparam.assignfieldvalue.html
 
1548
   AssignFromField db/tparam.assignfromfield.html
 
1549
   Clear db/tparam.clear.html
 
1550
   GetData db/tparam.getdata.html
 
1551
   GetDataSize db/tparam.getdatasize.html
 
1552
   LoadFromFile db/tparam.loadfromfile.html
 
1553
   LoadFromStream db/tparam.loadfromstream.html
 
1554
   SetBlobData db/tparam.setblobdata.html
 
1555
   SetData db/tparam.setdata.html
 
1556
   AsBlob db/tparam.asblob.html
 
1557
   AsBoolean db/tparam.asboolean.html
 
1558
   AsCurrency db/tparam.ascurrency.html
 
1559
   AsDate db/tparam.asdate.html
 
1560
   AsDateTime db/tparam.asdatetime.html
 
1561
   AsFloat db/tparam.asfloat.html
 
1562
   AsInteger db/tparam.asinteger.html
 
1563
   AsLargeInt db/tparam.aslargeint.html
 
1564
   AsMemo db/tparam.asmemo.html
 
1565
   AsSmallInt db/tparam.assmallint.html
 
1566
   AsString db/tparam.asstring.html
 
1567
   AsTime db/tparam.astime.html
 
1568
   AsWord db/tparam.asword.html
 
1569
   AsFMTBCD db/tparam.asfmtbcd.html
 
1570
   Bound db/tparam.bound.html
 
1571
   Dataset db/tparam.dataset.html
 
1572
   IsNull db/tparam.isnull.html
 
1573
   NativeStr db/tparam.nativestr.html
 
1574
   Text db/tparam.text.html
 
1575
   Value db/tparam.value.html
 
1576
   AsWideString db/tparam.aswidestring.html
 
1577
   DataType db/tparam.datatype.html
 
1578
   Name db/tparam.name.html
 
1579
   NumericScale db/tparam.numericscale.html
 
1580
   ParamType db/tparam.paramtype.html
 
1581
   Precision db/tparam.precision.html
 
1582
   Size db/tparam.size.html
 
1583
  TParams db/tparams.html
 
1584
   Create db/tparams.create.html
 
1585
   AddParam db/tparams.addparam.html
 
1586
   AssignValues db/tparams.assignvalues.html
 
1587
   CreateParam db/tparams.createparam.html
 
1588
   FindParam db/tparams.findparam.html
 
1589
   GetParamList db/tparams.getparamlist.html
 
1590
   IsEqual db/tparams.isequal.html
 
1591
   ParamByName db/tparams.parambyname.html
 
1592
   ParseSQL db/tparams.parsesql.html
 
1593
   RemoveParam db/tparams.removeparam.html
 
1594
   CopyParamValuesFromDataset db/tparams.copyparamvaluesfromdataset.html
 
1595
   Dataset db/tparams.dataset.html
 
1596
   Items db/tparams.items.html
 
1597
   ParamValues db/tparams.paramvalues.html
 
1598
  IProviderSupport db/iprovidersupport.html
 
1599
   PSEndTransaction db/iprovidersupport.psendtransaction.html
 
1600
   PSExecute db/iprovidersupport.psexecute.html
 
1601
   PSExecuteStatement db/iprovidersupport.psexecutestatement.html
 
1602
   PSGetAttributes db/iprovidersupport.psgetattributes.html
 
1603
   PSGetCommandText db/iprovidersupport.psgetcommandtext.html
 
1604
   PSGetCommandType db/iprovidersupport.psgetcommandtype.html
 
1605
   PSGetDefaultOrder db/iprovidersupport.psgetdefaultorder.html
 
1606
   PSGetIndexDefs db/iprovidersupport.psgetindexdefs.html
 
1607
   PSGetKeyFields db/iprovidersupport.psgetkeyfields.html
 
1608
   PSGetParams db/iprovidersupport.psgetparams.html
 
1609
   PSGetQuoteChar db/iprovidersupport.psgetquotechar.html
 
1610
   PSGetTableName db/iprovidersupport.psgettablename.html
 
1611
   PSGetUpdateException db/iprovidersupport.psgetupdateexception.html
 
1612
   PSInTransaction db/iprovidersupport.psintransaction.html
 
1613
   PSIsSQLBased db/iprovidersupport.psissqlbased.html
 
1614
   PSIsSQLSupported db/iprovidersupport.psissqlsupported.html
 
1615
   PSReset db/iprovidersupport.psreset.html
 
1616
   PSSetCommandText db/iprovidersupport.pssetcommandtext.html
 
1617
   PSSetParams db/iprovidersupport.pssetparams.html
 
1618
   PSStartTransaction db/iprovidersupport.psstarttransaction.html
 
1619
   PSUpdateRecord db/iprovidersupport.psupdaterecord.html
 
1620
  TDataSet db/tdataset.html
 
1621
   Create db/tdataset.create.html
 
1622
   Destroy db/tdataset.destroy.html
 
1623
   ActiveBuffer db/tdataset.activebuffer.html
 
1624
   GetFieldData db/tdataset.getfielddata.html
 
1625
   SetFieldData db/tdataset.setfielddata.html
 
1626
   Append db/tdataset.append.html
 
1627
   AppendRecord db/tdataset.appendrecord.html
 
1628
   BookmarkValid db/tdataset.bookmarkvalid.html
 
1629
   Cancel db/tdataset.cancel.html
 
1630
   CheckBrowseMode db/tdataset.checkbrowsemode.html
 
1631
   ClearFields db/tdataset.clearfields.html
 
1632
   Close db/tdataset.close.html
 
1633
   ControlsDisabled db/tdataset.controlsdisabled.html
 
1634
   CompareBookmarks db/tdataset.comparebookmarks.html
 
1635
   CreateBlobStream db/tdataset.createblobstream.html
 
1636
   CursorPosChanged db/tdataset.cursorposchanged.html
 
1637
   DataConvert db/tdataset.dataconvert.html
 
1638
   Delete db/tdataset.delete.html
 
1639
   DisableControls db/tdataset.disablecontrols.html
 
1640
   Edit db/tdataset.edit.html
 
1641
   EnableControls db/tdataset.enablecontrols.html
 
1642
   FieldByName db/tdataset.fieldbyname.html
 
1643
   FindField db/tdataset.findfield.html
 
1644
   FindFirst db/tdataset.findfirst.html
 
1645
   FindLast db/tdataset.findlast.html
 
1646
   FindNext db/tdataset.findnext.html
 
1647
   FindPrior db/tdataset.findprior.html
 
1648
   First db/tdataset.first.html
 
1649
   FreeBookmark db/tdataset.freebookmark.html
 
1650
   GetBookmark db/tdataset.getbookmark.html
 
1651
   GetCurrentRecord db/tdataset.getcurrentrecord.html
 
1652
   GetFieldList db/tdataset.getfieldlist.html
 
1653
   GetFieldNames db/tdataset.getfieldnames.html
 
1654
   GotoBookmark db/tdataset.gotobookmark.html
 
1655
   Insert db/tdataset.insert.html
 
1656
   InsertRecord db/tdataset.insertrecord.html
 
1657
   IsEmpty db/tdataset.isempty.html
 
1658
   IsLinkedTo db/tdataset.islinkedto.html
 
1659
   IsSequenced db/tdataset.issequenced.html
 
1660
   Last db/tdataset.last.html
 
1661
   Locate db/tdataset.locate.html
 
1662
   Lookup db/tdataset.lookup.html
 
1663
   MoveBy db/tdataset.moveby.html
 
1664
   Next db/tdataset.next.html
 
1665
   Open db/tdataset.open.html
 
1666
   Post db/tdataset.post.html
 
1667
   Prior db/tdataset.prior.html
 
1668
   Refresh db/tdataset.refresh.html
 
1669
   Resync db/tdataset.resync.html
 
1670
   SetFields db/tdataset.setfields.html
 
1671
   Translate db/tdataset.translate.html
 
1672
   UpdateCursorPos db/tdataset.updatecursorpos.html
 
1673
   UpdateRecord db/tdataset.updaterecord.html
 
1674
   UpdateStatus db/tdataset.updatestatus.html
 
1675
   BlockReadSize db/tdataset.blockreadsize.html
 
1676
   BOF db/tdataset.bof.html
 
1677
   Bookmark db/tdataset.bookmark.html
 
1678
   CanModify db/tdataset.canmodify.html
 
1679
   DataSource db/tdataset.datasource.html
 
1680
   DefaultFields db/tdataset.defaultfields.html
 
1681
   EOF db/tdataset.eof.html
 
1682
   FieldCount db/tdataset.fieldcount.html
 
1683
   FieldDefs db/tdataset.fielddefs.html
 
1684
   Found db/tdataset.found.html
 
1685
   Modified db/tdataset.modified.html
 
1686
   IsUniDirectional db/tdataset.isunidirectional.html
 
1687
   RecordCount db/tdataset.recordcount.html
 
1688
   RecNo db/tdataset.recno.html
 
1689
   RecordSize db/tdataset.recordsize.html
 
1690
   State db/tdataset.state.html
 
1691
   Fields db/tdataset.fields.html
 
1692
   FieldValues db/tdataset.fieldvalues.html
 
1693
   Filter db/tdataset.filter.html
 
1694
   Filtered db/tdataset.filtered.html
 
1695
   FilterOptions db/tdataset.filteroptions.html
 
1696
   Active db/tdataset.active.html
 
1697
   AutoCalcFields db/tdataset.autocalcfields.html
 
1698
   BeforeOpen db/tdataset.beforeopen.html
 
1699
   AfterOpen db/tdataset.afteropen.html
 
1700
   BeforeClose db/tdataset.beforeclose.html
 
1701
   AfterClose db/tdataset.afterclose.html
 
1702
   BeforeInsert db/tdataset.beforeinsert.html
 
1703
   AfterInsert db/tdataset.afterinsert.html
 
1704
   BeforeEdit db/tdataset.beforeedit.html
 
1705
   AfterEdit db/tdataset.afteredit.html
 
1706
   BeforePost db/tdataset.beforepost.html
 
1707
   AfterPost db/tdataset.afterpost.html
 
1708
   BeforeCancel db/tdataset.beforecancel.html
 
1709
   AfterCancel db/tdataset.aftercancel.html
 
1710
   BeforeDelete db/tdataset.beforedelete.html
 
1711
   AfterDelete db/tdataset.afterdelete.html
 
1712
   BeforeScroll db/tdataset.beforescroll.html
 
1713
   AfterScroll db/tdataset.afterscroll.html
 
1714
   BeforeRefresh db/tdataset.beforerefresh.html
 
1715
   AfterRefresh db/tdataset.afterrefresh.html
 
1716
   OnCalcFields db/tdataset.oncalcfields.html
 
1717
   OnDeleteError db/tdataset.ondeleteerror.html
 
1718
   OnEditError db/tdataset.onediterror.html
 
1719
   OnFilterRecord db/tdataset.onfilterrecord.html
 
1720
   OnNewRecord db/tdataset.onnewrecord.html
 
1721
   OnPostError db/tdataset.onposterror.html
 
1722
  TDataLink db/tdatalink.html
 
1723
   Create db/tdatalink.create.html
 
1724
   Destroy db/tdatalink.destroy.html
 
1725
   Edit db/tdatalink.edit.html
 
1726
   UpdateRecord db/tdatalink.updaterecord.html
 
1727
   ExecuteAction db/tdatalink.executeaction.html
 
1728
   UpdateAction db/tdatalink.updateaction.html
 
1729
   Active db/tdatalink.active.html
 
1730
   ActiveRecord db/tdatalink.activerecord.html
 
1731
   BOF db/tdatalink.bof.html
 
1732
   BufferCount db/tdatalink.buffercount.html
 
1733
   DataSet db/tdatalink.dataset.html
 
1734
   DataSource db/tdatalink.datasource.html
 
1735
   DataSourceFixed db/tdatalink.datasourcefixed.html
 
1736
   Editing db/tdatalink.editing.html
 
1737
   Eof db/tdatalink.eof.html
 
1738
   ReadOnly db/tdatalink.readonly.html
 
1739
   RecordCount db/tdatalink.recordcount.html
 
1740
  TDetailDataLink db/tdetaildatalink.html
 
1741
   DetailDataSet db/tdetaildatalink.detaildataset.html
 
1742
  TMasterDataLink db/tmasterdatalink.html
 
1743
   Create db/tmasterdatalink.create.html
 
1744
   Destroy db/tmasterdatalink.destroy.html
 
1745
   FieldNames db/tmasterdatalink.fieldnames.html
 
1746
   Fields db/tmasterdatalink.fields.html
 
1747
   OnMasterChange db/tmasterdatalink.onmasterchange.html
 
1748
   OnMasterDisable db/tmasterdatalink.onmasterdisable.html
 
1749
  TDataSource db/tdatasource.html
 
1750
   Create db/tdatasource.create.html
 
1751
   Destroy db/tdatasource.destroy.html
 
1752
   Edit db/tdatasource.edit.html
 
1753
   IsLinkedTo db/tdatasource.islinkedto.html
 
1754
   State db/tdatasource.state.html
 
1755
   AutoEdit db/tdatasource.autoedit.html
 
1756
   DataSet db/tdatasource.dataset.html
 
1757
   Enabled db/tdatasource.enabled.html
 
1758
   OnStateChange db/tdatasource.onstatechange.html
 
1759
   OnDataChange db/tdatasource.ondatachange.html
 
1760
   OnUpdateData db/tdatasource.onupdatedata.html
 
1761
  TDBDataset db/tdbdataset.html
 
1762
   destroy db/tdbdataset.destroy.html
 
1763
   DataBase db/tdbdataset.database.html
 
1764
   Transaction db/tdbdataset.transaction.html
 
1765
  TDBTransaction db/tdbtransaction.html
 
1766
   Create db/tdbtransaction.create.html
 
1767
   destroy db/tdbtransaction.destroy.html
 
1768
   CloseDataSets db/tdbtransaction.closedatasets.html
 
1769
   DataBase db/tdbtransaction.database.html
 
1770
   Active db/tdbtransaction.active.html
 
1771
  TCustomConnection db/tcustomconnection.html
 
1772
   Close db/tcustomconnection.close.html
 
1773
   Destroy db/tcustomconnection.destroy.html
 
1774
   Open db/tcustomconnection.open.html
 
1775
   DataSetCount db/tcustomconnection.datasetcount.html
 
1776
   DataSets db/tcustomconnection.datasets.html
 
1777
   Connected db/tcustomconnection.connected.html
 
1778
   LoginPrompt db/tcustomconnection.loginprompt.html
 
1779
   AfterConnect db/tcustomconnection.afterconnect.html
 
1780
   AfterDisconnect db/tcustomconnection.afterdisconnect.html
 
1781
   BeforeConnect db/tcustomconnection.beforeconnect.html
 
1782
   BeforeDisconnect db/tcustomconnection.beforedisconnect.html
 
1783
   OnLogin db/tcustomconnection.onlogin.html
 
1784
  TDatabase db/tdatabase.html
 
1785
   Create db/tdatabase.create.html
 
1786
   Destroy db/tdatabase.destroy.html
 
1787
   CloseDataSets db/tdatabase.closedatasets.html
 
1788
   CloseTransactions db/tdatabase.closetransactions.html
 
1789
   StartTransaction db/tdatabase.starttransaction.html
 
1790
   EndTransaction db/tdatabase.endtransaction.html
 
1791
   TransactionCount db/tdatabase.transactioncount.html
 
1792
   Transactions db/tdatabase.transactions.html
 
1793
   Directory db/tdatabase.directory.html
 
1794
   IsSQLBased db/tdatabase.issqlbased.html
 
1795
   DatabaseName db/tdatabase.databasename.html
 
1796
   KeepConnection db/tdatabase.keepconnection.html
 
1797
   Params db/tdatabase.params.html
 
1798
   Connected db/index.html
 
1799
  TMasterParamsDataLink db/tmasterparamsdatalink.html
 
1800
   Create db/tmasterparamsdatalink.create.html
 
1801
   RefreshParamNames db/tmasterparamsdatalink.refreshparamnames.html
 
1802
   CopyParamsFromMaster db/tmasterparamsdatalink.copyparamsfrommaster.html
 
1803
   Params db/tmasterparamsdatalink.params.html
 
1804
  DatabaseError db/databaseerror.html
 
1805
  DatabaseErrorFmt db/databaseerrorfmt.html
 
1806
  ExtractFieldName db/extractfieldname.html
 
1807
  DateTimeRecToDateTime db/datetimerectodatetime.html
 
1808
  DateTimeToDateTimeRec db/datetimetodatetimerec.html
 
1809
  DisposeMem db/disposemem.html
 
1810
  BuffersEqual db/buffersequal.html
 
1811
  SkipComments db/skipcomments.html
 
1812
 IBConnection ibconnection/index.html
 
1813
  DEFDIALECT ibconnection/defdialect.html
 
1814
  MAXBLOBSEGMENTSIZE ibconnection/maxblobsegmentsize.html
 
1815
  EIBDatabaseError ibconnection/eibdatabaseerror.html
 
1816
   GDSErrorCode ibconnection/eibdatabaseerror.gdserrorcode.html
 
1817
  TIBCursor ibconnection/tibcursor.html
 
1818
  TIBTrans ibconnection/tibtrans.html
 
1819
  TIBConnection ibconnection/tibconnection.html
 
1820
   Create ibconnection/tibconnection.create.html
 
1821
   CreateDB ibconnection/tibconnection.createdb.html
 
1822
   DropDB ibconnection/tibconnection.dropdb.html
 
1823
   BlobSegmentSize ibconnection/tibconnection.blobsegmentsize.html
 
1824
   GetDBDialect ibconnection/tibconnection.getdbdialect.html
 
1825
   DatabaseName ibconnection/tibconnection.databasename.html
 
1826
   Dialect ibconnection/tibconnection.dialect.html
 
1827
   KeepConnection ibconnection/tibconnection.keepconnection.html
 
1828
   LoginPrompt ibconnection/tibconnection.loginprompt.html
 
1829
   Params ibconnection/tibconnection.params.html
 
1830
   OnLogin ibconnection/tibconnection.onlogin.html
 
1831
  TIBConnectionDef ibconnection/tibconnectiondef.html
 
1832
   TypeName ibconnection/tibconnectiondef.typename.html
 
1833
   ConnectionClass ibconnection/tibconnectiondef.connectionclass.html
 
1834
   Description ibconnection/tibconnectiondef.description.html
 
1835
 mssqlconn mssqlconn/index.html
 
1836
  TClientCharset mssqlconn/tclientcharset.html
 
1837
  TMSSQLConnection mssqlconn/tmssqlconnection.html
 
1838
   Create mssqlconn/tmssqlconnection.create.html
 
1839
   Password mssqlconn/tmssqlconnection.password.html
 
1840
   Transaction mssqlconn/tmssqlconnection.transaction.html
 
1841
   UserName mssqlconn/tmssqlconnection.username.html
 
1842
   CharSet mssqlconn/tmssqlconnection.charset.html
 
1843
   HostName mssqlconn/tmssqlconnection.hostname.html
 
1844
   Connected mssqlconn/tmssqlconnection.connected.html
 
1845
   Role mssqlconn/tmssqlconnection.role.html
 
1846
   DatabaseName mssqlconn/tmssqlconnection.databasename.html
 
1847
   KeepConnection mssqlconn/tmssqlconnection.keepconnection.html
 
1848
   LoginPrompt mssqlconn/tmssqlconnection.loginprompt.html
 
1849
   Params mssqlconn/tmssqlconnection.params.html
 
1850
   OnLogin mssqlconn/tmssqlconnection.onlogin.html
 
1851
  TSybaseConnection mssqlconn/tsybaseconnection.html
 
1852
   Create mssqlconn/tsybaseconnection.create.html
 
1853
  EMSSQLDatabaseError mssqlconn/emssqldatabaseerror.html
 
1854
   DBErrorCode mssqlconn/emssqldatabaseerror.dberrorcode.html
 
1855
  TMSSQLConnectionDef mssqlconn/tmssqlconnectiondef.html
 
1856
   TypeName mssqlconn/tmssqlconnectiondef.typename.html
 
1857
   ConnectionClass mssqlconn/tmssqlconnectiondef.connectionclass.html
 
1858
   Description mssqlconn/tmssqlconnectiondef.description.html
 
1859
  TSybaseConnectionDef mssqlconn/tsybaseconnectiondef.html
 
1860
   TypeName mssqlconn/tsybaseconnectiondef.typename.html
 
1861
   ConnectionClass mssqlconn/tsybaseconnectiondef.connectionclass.html
 
1862
   Description mssqlconn/tsybaseconnectiondef.description.html
 
1863
  DBLibLibraryName mssqlconn/dbliblibraryname.html
 
1864
 
 
1865
:classes
 
1866
#fcl.iostream.EIOStreamError #rtl.Classes.EStreamError
 
1867
#fcl.iostream.TIOStream #rtl.Classes.THandleStream
 
1868
1VFType
 
1869
1VFPos
 
1870
1VzIOSType
 
1871
2MSetSize
 
1872
2MGetPosition
 
1873
2MInvalidSeek
 
1874
3MCreate
 
1875
3MRead
 
1876
3MWrite
 
1877
3MSeek
 
1878
#fcl.Pipes.EPipeError #rtl.Classes.EStreamError
 
1879
#fcl.Pipes.EPipeSeek #fcl.Pipes.EPipeError
 
1880
#fcl.Pipes.EPipeCreation #fcl.Pipes.EPipeError
 
1881
#fcl.Pipes.TInputPipeStream #rtl.Classes.THandleStream
 
1882
1VFPos
 
1883
1MGetNumBytesAvailable
 
1884
2MGetPosition
 
1885
2MInvalidSeek
 
1886
3MDestroy
 
1887
3MWrite
 
1888
3MSeek
 
1889
3MRead
 
1890
3PNumBytesAvailable r
 
1891
#fcl.Pipes.TOutputPipeStream #rtl.Classes.THandleStream
 
1892
3MDestroy
 
1893
3MSeek
 
1894
3MRead
 
1895
#fcl.process.TProcess #rtl.Classes.TComponent
 
1896
1VFProcessOptions
 
1897
1VFStartupOptions
 
1898
1VFProcessID
 
1899
1VFTerminalProgram
 
1900
1VFThreadID
 
1901
1VFProcessHandle
 
1902
1VFThreadHandle
 
1903
1VFFillAttribute
 
1904
1VFApplicationName
 
1905
1VFConsoleTitle
 
1906
1VFCommandLine
 
1907
1VFCurrentDirectory
 
1908
1VFDesktop
 
1909
1VFEnvironment
 
1910
1VFExecutable
 
1911
1VFParameters
 
1912
1VFShowWindow
 
1913
1VFInherithandles
 
1914
1VFForkEvent
 
1915
1VFProcessPriority
 
1916
1VdwXCountchars
 
1917
1VdwXSize
 
1918
1VdwYsize
 
1919
1Vdwx
 
1920
1VdwYcountChars
 
1921
1Vdwy
 
1922
1VFXTermProgram
 
1923
1MFreeStreams
 
1924
1MGetExitStatus
 
1925
1MGetRunning
 
1926
1MGetWindowRect
 
1927
1MSetCommandLine
 
1928
1MSetParameters
 
1929
1MSetWindowRect
 
1930
1MSetShowWindow
 
1931
1MSetWindowColumns
 
1932
1MSetWindowHeight
 
1933
1MSetWindowLeft
 
1934
1MSetWindowRows
 
1935
1MSetWindowTop
 
1936
1MSetWindowWidth
 
1937
1MSetApplicationName
 
1938
1MSetProcessOptions
 
1939
1MSetActive
 
1940
1MSetEnvironment
 
1941
1MConvertCommandLine
 
1942
1MPeekExitStatus
 
1943
2VFRunning
 
1944
2VFExitCode
 
1945
2VFInputStream
 
1946
2VFOutputStream
 
1947
2VFStderrStream
 
1948
2MCloseProcessHandles
 
1949
2MCreateStreams
 
1950
2MFreeStream
 
1951
2MLoaded
 
1952
3MCreate
 
1953
3MDestroy
 
1954
3MExecute
 
1955
3MCloseInput
 
1956
3MCloseOutput
 
1957
3MCloseStderr
 
1958
3MResume
 
1959
3MSuspend
 
1960
3MTerminate
 
1961
3MWaitOnExit
 
1962
3PWindowRect rw
 
1963
3PHandle r
 
1964
3PProcessHandle r
 
1965
3PThreadHandle r
 
1966
3PProcessID r
 
1967
3PThreadID r
 
1968
3PInput r
 
1969
3POutput r
 
1970
3PStderr r
 
1971
3PExitStatus r
 
1972
3PInheritHandles rw
 
1973
3POnForkEvent rw
 
1974
4PActive rw
 
1975
4PApplicationName rw
 
1976
4PCommandLine rw
 
1977
4PExecutable rw
 
1978
4PParameters rw
 
1979
4PConsoleTitle rw
 
1980
4PCurrentDirectory rw
 
1981
4PDesktop rw
 
1982
4PEnvironment rw
 
1983
4POptions rw
 
1984
4PPriority rw
 
1985
4PStartupOptions rw
 
1986
4PRunning r
 
1987
4PShowWindow rw
 
1988
4PWindowColumns rw
 
1989
4PWindowHeight rw
 
1990
4PWindowLeft rw
 
1991
4PWindowRows rw
 
1992
4PWindowTop rw
 
1993
4PWindowWidth rw
 
1994
4PFillAttribute rw
 
1995
4PXTermProgram rw
 
1996
#fcl.process.EProcess #rtl.sysutils.Exception
 
1997
#fcl.contnrs.TFPObjectList #rtl.System.TObject
 
1998
1VFFreeObjects
 
1999
1VFList
 
2000
1MGetCount
 
2001
1MSetCount
 
2002
2MGetItem
 
2003
2MSetItem
 
2004
2MSetCapacity
 
2005
2MGetCapacity
 
2006
0MCreate
 
2007
3MDestroy
 
2008
3MClear
 
2009
3MAdd
 
2010
3MDelete
 
2011
3MExchange
 
2012
3MExpand
 
2013
3MExtract
 
2014
3MRemove
 
2015
3MIndexOf
 
2016
3MFindInstanceOf
 
2017
3MInsert
 
2018
3MFirst
 
2019
3MLast
 
2020
3MMove
 
2021
3MAssign
 
2022
3MPack
 
2023
3MSort
 
2024
0MForEachCall
 
2025
3PCapacity rw
 
2026
3PCount rw
 
2027
3POwnsObjects rw
 
2028
3PItems rw
 
2029
3PList r
 
2030
#fcl.contnrs.TObjectList #rtl.Classes.TList
 
2031
1Vffreeobjects
 
2032
2MNotify
 
2033
2MGetItem
 
2034
2MSetItem
 
2035
0Mcreate
 
2036
3MAdd
 
2037
3MExtract
 
2038
3MRemove
 
2039
3MIndexOf
 
2040
3MFindInstanceOf
 
2041
3MInsert
 
2042
3MFirst
 
2043
3MLast
 
2044
3POwnsObjects rw
 
2045
3PItems rw
 
2046
#fcl.contnrs.TComponentList #fcl.contnrs.TObjectList
 
2047
1VFNotifier
 
2048
2MNotify
 
2049
2MGetItems
 
2050
2MSetItems
 
2051
2MHandleFreeNotify
 
2052
3MDestroy
 
2053
3MAdd
 
2054
3MExtract
 
2055
3MRemove
 
2056
3MIndexOf
 
2057
3MFirst
 
2058
3MLast
 
2059
3MInsert
 
2060
3PItems rw
 
2061
#fcl.contnrs.TClassList #rtl.Classes.TList
 
2062
2MGetItems
 
2063
2MSetItems
 
2064
3MAdd
 
2065
3MExtract
 
2066
3MRemove
 
2067
3MIndexOf
 
2068
3MFirst
 
2069
3MLast
 
2070
3MInsert
 
2071
3PItems rw
 
2072
#fcl.contnrs.TOrderedList #rtl.System.TObject
 
2073
1VFList
 
2074
2MPushItem
 
2075
2MPopItem
 
2076
2MPeekItem
 
2077
2PList r
 
2078
3MCreate
 
2079
3MDestroy
 
2080
3MCount
 
2081
3MAtLeast
 
2082
3MPush
 
2083
3MPop
 
2084
3MPeek
 
2085
#fcl.contnrs.TStack #fcl.contnrs.TOrderedList
 
2086
2MPushItem
 
2087
#fcl.contnrs.TObjectStack #fcl.contnrs.TStack
 
2088
3MPush
 
2089
3MPop
 
2090
3MPeek
 
2091
#fcl.contnrs.TQueue #fcl.contnrs.TOrderedList
 
2092
2MPushItem
 
2093
#fcl.contnrs.TObjectQueue #fcl.contnrs.TQueue
 
2094
3MPush
 
2095
3MPop
 
2096
3MPeek
 
2097
#fcl.contnrs.TFPHashList #rtl.System.TObject
 
2098
1VFHashList
 
2099
1VFCount
 
2100
1VFCapacity
 
2101
1VFHashTable
 
2102
1VFHashCapacity
 
2103
1VFStrs
 
2104
1VFStrCount
 
2105
1VFStrCapacity
 
2106
1MInternalFind
 
2107
2MGet
 
2108
2MPut
 
2109
2MSetCapacity
 
2110
2MSetCount
 
2111
2MRaiseIndexError
 
2112
2MAddStr
 
2113
2MAddToHashTable
 
2114
2MStrExpand
 
2115
2MSetStrCapacity
 
2116
2MSetHashCapacity
 
2117
2MReHash
 
2118
3MCreate
 
2119
3MDestroy
 
2120
3MAdd
 
2121
3MClear
 
2122
3MNameOfIndex
 
2123
3MHashOfIndex
 
2124
3MGetNextCollision
 
2125
3MDelete
 
2126
3MError
 
2127
3MExpand
 
2128
3MExtract
 
2129
3MIndexOf
 
2130
3MFind
 
2131
3MFindIndexOf
 
2132
3MFindWithHash
 
2133
3MRename
 
2134
3MRemove
 
2135
3MPack
 
2136
3MShowStatistics
 
2137
0MForEachCall
 
2138
3PCapacity rw
 
2139
3PCount rw
 
2140
3PItems rw
 
2141
3PList r
 
2142
3PStrs r
 
2143
#fcl.contnrs.TFPHashObject #rtl.System.TObject
 
2144
1VFOwner
 
2145
1VFCachedStr
 
2146
1VFStrIndex
 
2147
1MInternalChangeOwner
 
2148
2MGetName
 
2149
2MGetHash
 
2150
3MCreateNotOwned
 
2151
3MCreate
 
2152
3MChangeOwner
 
2153
3MChangeOwnerAndName
 
2154
3MRename
 
2155
3PName r
 
2156
3PHash r
 
2157
#fcl.contnrs.TFPHashObjectList #rtl.System.TObject
 
2158
1VFFreeObjects
 
2159
1VFHashList
 
2160
1MGetCount
 
2161
1MSetCount
 
2162
2MGetItem
 
2163
2MSetItem
 
2164
2MSetCapacity
 
2165
2MGetCapacity
 
2166
3MCreate
 
2167
3MDestroy
 
2168
3MClear
 
2169
3MAdd
 
2170
3MNameOfIndex
 
2171
3MHashOfIndex
 
2172
3MGetNextCollision
 
2173
3MDelete
 
2174
3MExpand
 
2175
3MExtract
 
2176
3MRemove
 
2177
3MIndexOf
 
2178
3MFind
 
2179
3MFindIndexOf
 
2180
3MFindWithHash
 
2181
3MRename
 
2182
3MFindInstanceOf
 
2183
3MPack
 
2184
3MShowStatistics
 
2185
0MForEachCall
 
2186
3PCapacity rw
 
2187
3PCount rw
 
2188
3POwnsObjects rw
 
2189
3PItems rw
 
2190
3PList r
 
2191
#fcl.contnrs.THTCustomNode #rtl.System.TObject
 
2192
1VFKey
 
2193
3MCreateWith
 
2194
3MHasKey
 
2195
3PKey r
 
2196
#fcl.contnrs.TFPCustomHashTable #rtl.System.TObject
 
2197
1VFHashTable
 
2198
1VFHashTableSize
 
2199
1VFHashFunction
 
2200
1VFCount
 
2201
1MGetDensity
 
2202
1MGetNumberOfCollisions
 
2203
1MSetHashTableSize
 
2204
1MInitializeHashTable
 
2205
1MGetVoidSlots
 
2206
1MGetLoadFactor
 
2207
1MGetAVGChainLen
 
2208
1MGetMaxChainLength
 
2209
2MChain
 
2210
2MCreateNewNode
 
2211
2MAddNode
 
2212
2MChainLength
 
2213
2MFindOrCreateNew
 
2214
2MSetHashFunction
 
2215
2MFindChainForAdd
 
2216
3MCreate
 
2217
3MCreateWith
 
2218
3MDestroy
 
2219
3MChangeTableSize
 
2220
3MClear
 
2221
3MDelete
 
2222
3MFind
 
2223
3MIsEmpty
 
2224
3PHashFunction rw
 
2225
3PCount r
 
2226
3PHashTableSize rw
 
2227
3PHashTable r
 
2228
3PVoidSlots r
 
2229
3PLoadFactor r
 
2230
3PAVGChainLen r
 
2231
3PMaxChainLength r
 
2232
3PNumberOfCollisions r
 
2233
3PDensity r
 
2234
#fcl.contnrs.THTDataNode #fcl.contnrs.THTCustomNode
 
2235
1VFData
 
2236
3PData rw
 
2237
#fcl.contnrs.TFPDataHashTable #fcl.contnrs.TFPCustomHashTable
 
2238
2MCreateNewNode
 
2239
2MAddNode
 
2240
2MSetData
 
2241
2MGetData
 
2242
2MForEachCall
 
2243
3MAdd
 
2244
3PItems rw
 
2245
#fcl.contnrs.THTStringNode #fcl.contnrs.THTCustomNode
 
2246
1VFData
 
2247
3PData rw
 
2248
#fcl.contnrs.TFPStringHashTable #fcl.contnrs.TFPCustomHashTable
 
2249
2MCreateNewNode
 
2250
2MAddNode
 
2251
2MSetData
 
2252
2MGetData
 
2253
2MForEachCall
 
2254
3MAdd
 
2255
3PItems rw
 
2256
#fcl.contnrs.THTObjectNode #fcl.contnrs.THTCustomNode
 
2257
1VFData
 
2258
3PData rw
 
2259
#fcl.contnrs.THTOwnedObjectNode #fcl.contnrs.THTObjectNode
 
2260
3MDestroy
 
2261
#fcl.contnrs.TFPObjectHashTable #fcl.contnrs.TFPCustomHashTable
 
2262
1VFOwnsObjects
 
2263
2MCreateNewNode
 
2264
2MAddNode
 
2265
2MSetData
 
2266
2MGetData
 
2267
2MForEachCall
 
2268
3MCreate
 
2269
3MCreateWith
 
2270
3MAdd
 
2271
3PItems rw
 
2272
3POwnsObjects rw
 
2273
#fcl.contnrs.EDuplicate #rtl.sysutils.Exception
 
2274
#fcl.contnrs.EKeyNotFound #rtl.sysutils.Exception
 
2275
#fcl.contnrs.TCustomBucketList #rtl.System.TObject
 
2276
1VFBuckets
 
2277
1MGetBucketCount
 
2278
1MGetData
 
2279
1MSetData
 
2280
1MSetBucketCount
 
2281
2MGetBucketItem
 
2282
2MAddItem
 
2283
2MBucketFor
 
2284
2MDeleteItem
 
2285
2MError
 
2286
2MFindItem
 
2287
2PBuckets r
 
2288
2PBucketCount rw
 
2289
3MDestroy
 
2290
3MClear
 
2291
3MAdd
 
2292
3MAssign
 
2293
3MExists
 
2294
3MFind
 
2295
0MForEach
 
2296
3MRemove
 
2297
3PData rw
 
2298
#fcl.contnrs.TBucketList #fcl.contnrs.TCustomBucketList
 
2299
1VFBucketMask
 
2300
2MBucketFor
 
2301
3MCreate
 
2302
#fcl.contnrs.TObjectBucketList #fcl.contnrs.TBucketList
 
2303
2MGetData
 
2304
2MSetData
 
2305
3MAdd
 
2306
3MRemove
 
2307
3PData rw
 
2308
#fcl.zstream.Tcustomzlibstream #rtl.Classes.TOwnerStream
 
2309
2VFstream
 
2310
2VFbuffer
 
2311
2VFonprogress
 
2312
2Mprogress
 
2313
2Ponprogress rw
 
2314
3Mcreate
 
2315
3Mdestroy
 
2316
#fcl.zstream.Tcompressionstream #fcl.zstream.Tcustomzlibstream
 
2317
2Vraw_written
 
2318
2Vcompressed_written
 
2319
3Mcreate
 
2320
3Mdestroy
 
2321
3Mwrite
 
2322
3Mflush
 
2323
3Mget_compressionrate
 
2324
#fcl.zstream.Tdecompressionstream #fcl.zstream.Tcustomzlibstream
 
2325
2Vraw_read
 
2326
2Vcompressed_read
 
2327
2Vskipheader
 
2328
2Mreset
 
2329
2MGetPosition
 
2330
3Mcreate
 
2331
3Mdestroy
 
2332
3Mread
 
2333
3Mseek
 
2334
3Mget_compressionrate
 
2335
#fcl.zstream.TGZFileStream #rtl.Classes.TStream
 
2336
2VFgzfile
 
2337
2VFfilemode
 
2338
3Mcreate
 
2339
3Mread
 
2340
3Mwrite
 
2341
3Mseek
 
2342
3Mdestroy
 
2343
#fcl.zstream.Ezliberror #rtl.Classes.EStreamError
 
2344
#fcl.zstream.Egzfileerror #fcl.zstream.Ezliberror
 
2345
#fcl.zstream.Ecompressionerror #fcl.zstream.Ezliberror
 
2346
#fcl.zstream.Edecompressionerror #fcl.zstream.Ezliberror
 
2347
#fcl.idea.EIDEAError #rtl.Classes.EStreamError
 
2348
#fcl.idea.TIDEAStream #rtl.Classes.TOwnerStream
 
2349
1VFKey
 
2350
1VFData
 
2351
1VFBufpos
 
2352
1VFPos
 
2353
2MGetPosition
 
2354
2MInvalidSeek
 
2355
2MCreateCryptKey
 
2356
3MCreate
 
2357
3PKey r
 
2358
#fcl.idea.TIDEAEncryptStream #fcl.idea.TIDEAStream
 
2359
3MCreate
 
2360
3MDestroy
 
2361
3MWrite
 
2362
3MSeek
 
2363
3MFlush
 
2364
#fcl.idea.TIDEADeCryptStream #fcl.idea.TIDEAStream
 
2365
3MCreate
 
2366
3MRead
 
2367
3MSeek
 
2368
#fcl.bufstream.TBufStream #rtl.Classes.TOwnerStream
 
2369
1VFTotalPos
 
2370
1VFbuffer
 
2371
1VFBufPos
 
2372
1VFBufSize
 
2373
1VFCapacity
 
2374
1MSetCapacity
 
2375
2MGetPosition
 
2376
2MGetSize
 
2377
2MBufferError
 
2378
2MFillBuffer
 
2379
2MFlushBuffer
 
2380
0MCreate
 
2381
3MDestroy
 
2382
3PBuffer r
 
2383
3PCapacity rw
 
2384
3PBufferPos r
 
2385
3PBufferSize r
 
2386
#fcl.bufstream.TReadBufStream #fcl.bufstream.TBufStream
 
2387
3MSeek
 
2388
3MRead
 
2389
#fcl.bufstream.TWriteBufStream #fcl.bufstream.TBufStream
 
2390
3MDestroy
 
2391
3MSeek
 
2392
3MWrite
 
2393
#fcl.base64.TBase64EncodingStream #rtl.Classes.TOwnerStream
 
2394
2VTotalBytesProcessed
 
2395
2VBytesWritten
 
2396
2VBuf
 
2397
2VBufSize
 
2398
3MCreate
 
2399
3MDestroy
 
2400
3MFlush
 
2401
3MWrite
 
2402
3MSeek
 
2403
#fcl.base64.TBase64DecodingStream #rtl.Classes.TOwnerStream
 
2404
1VFMode
 
2405
1MSetMode
 
2406
1MGetSize
 
2407
1MGetPosition
 
2408
2VCurPos
 
2409
2VDecodedSize
 
2410
2VReadBase64ByteCount
 
2411
2VBuf
 
2412
2VBufPos
 
2413
2VFEOF
 
2414
0MCreate
 
2415
3MReset
 
2416
3MRead
 
2417
3MSeek
 
2418
3PEOF r
 
2419
3PMode rw
 
2420
#fcl.base64.EBase64DecodingException #rtl.sysutils.Exception
 
2421
#fcl.gettext.TMOFile #rtl.System.TObject
 
2422
2VStringCount
 
2423
2VHashTableSize
 
2424
2VHashTable
 
2425
2VOrigTable
 
2426
2VTranslTable
 
2427
2VOrigStrings
 
2428
2VTranslStrings
 
2429
0MCreate
 
2430
3MDestroy
 
2431
0MTranslate
 
2432
#fcl.gettext.EMOFileError #rtl.sysutils.Exception
 
2433
#fcl.ezcgi.ECGIException #rtl.sysutils.Exception
 
2434
#fcl.ezcgi.TEZcgi #rtl.System.TObject
 
2435
1VFVariables
 
2436
1VFName
 
2437
1VFEmail
 
2438
1VFQueryString
 
2439
1VaString
 
2440
1VaSepStr
 
2441
1VaPos
 
2442
1VaLenStr
 
2443
1VaLenSep
 
2444
1MInitToken
 
2445
1MNextToken
 
2446
1MGetQueryItems
 
2447
1MProcessRequest
 
2448
1MLoadEnvVariables
 
2449
1MGetVal
 
2450
1MGetName
 
2451
1MGetVariable
 
2452
1MGetVarCount
 
2453
1MReadPostQuery
 
2454
1MReadGetQuery
 
2455
2MOutputError
 
2456
3MCreate
 
2457
3MDestroy
 
2458
3MRun
 
2459
3MWriteContent
 
2460
3MPutLine
 
2461
3MGetValue
 
2462
3MDoPost
 
2463
3MDoGet
 
2464
3PValues r
 
2465
3PNames r
 
2466
3PVariables r
 
2467
3PVariableCount r
 
2468
3PName rw
 
2469
3PEmail rw
 
2470
#fcl.pooledmm.TPooledMemManager #rtl.System.TObject
 
2471
1MSetMaxFreeRatio
 
2472
1MSetMinFree
 
2473
2VFFirstFree
 
2474
2VFFreeCount
 
2475
2VFCount
 
2476
2VFMinFree
 
2477
2VFMaxFreeRatio
 
2478
2VFAllocatedCount
 
2479
2VFFreedCount
 
2480
2MDisposeItem
 
2481
2MNewItem
 
2482
2MFreeFirstItem
 
2483
3PMinimumFreeCount rw
 
2484
3PMaximumFreeCountRatio rw
 
2485
3PCount r
 
2486
3PFreeCount r
 
2487
3PAllocatedCount r
 
2488
3PFreedCount r
 
2489
3MClear
 
2490
3MCreate
 
2491
3MDestroy
 
2492
#fcl.pooledmm.TNonFreePooledMemManager #rtl.System.TObject
 
2493
1VFItemSize
 
2494
1VFItems
 
2495
1VFCurItem
 
2496
1VFEndItem
 
2497
1VFCurSize
 
2498
1VFFirstSize
 
2499
3VClearOnCreate
 
2500
3PItemSize r
 
2501
3MClear
 
2502
3MCreate
 
2503
3MDestroy
 
2504
3MNewItem
 
2505
3MEnumerateItems
 
2506
#fcl.streamex.TBidirBinaryObjectReader #rtl.Classes.TBinaryObjectReader
 
2507
2MGetPosition
 
2508
2MSetPosition
 
2509
3PPosition rw
 
2510
#fcl.streamex.TBidirBinaryObjectWriter #rtl.Classes.TBinaryObjectWriter
 
2511
2MGetPosition
 
2512
2MSetPosition
 
2513
3PPosition rw
 
2514
#fcl.streamex.TDelphiReader #rtl.Classes.TReader
 
2515
2MGetPosition
 
2516
2MSetPosition
 
2517
2MCreateDriver
 
2518
3MGetDriver
 
2519
3MReadStr
 
2520
3MRead
 
2521
3PPosition rw
 
2522
#fcl.streamex.TDelphiWriter #rtl.Classes.TWriter
 
2523
2MGetPosition
 
2524
2MSetPosition
 
2525
2MCreateDriver
 
2526
3MGetDriver
 
2527
3MFlushBuffer
 
2528
3MWrite
 
2529
3MWriteStr
 
2530
3MWriteValue
 
2531
3PPosition rw
 
2532
#fcl.inicol.TIniCollectionItem #rtl.Classes.TCollectionItem
 
2533
2MGetSectionName
 
2534
2MSetSectionName
 
2535
3MSaveToIni
 
2536
3MLoadFromIni
 
2537
3MSaveToFile
 
2538
3MLoadFromFile
 
2539
3PSectionName rw
 
2540
#fcl.inicol.TIniCollection #rtl.Classes.TCollection
 
2541
1VFFileName
 
2542
1VFGlobalSection
 
2543
2VFPrefix
 
2544
2VFSectionPrefix
 
2545
3MLoad
 
2546
3MSave
 
2547
3MSaveToIni
 
2548
3MSaveToFile
 
2549
3MLoadFromIni
 
2550
3MLoadFromFile
 
2551
3PPrefix r
 
2552
3PSectionPrefix r
 
2553
3PFileName rw
 
2554
3PGlobalSection rw
 
2555
#fcl.inicol.TNamedIniCollectionItem #fcl.inicol.TIniCollectionItem
 
2556
1MSetName
 
2557
2VFName
 
2558
2VFUserData
 
2559
2MSetCollection
 
2560
2MGetSectionName
 
2561
2MSetSectionName
 
2562
3PUserData rw
 
2563
4PName rw
 
2564
#fcl.inicol.TNamedIniCollection #fcl.inicol.TIniCollection
 
2565
1MGetNamedItem
 
2566
1MSetNamedItem
 
2567
3MIndexOfUserData
 
2568
3MIndexOfName
 
2569
3MFindByName
 
2570
3MFindByUserData
 
2571
3PNamedItems rw
 
2572
#fcl.inicol.EIniCol #rtl.sysutils.Exception
 
2573
#fcl.IniFiles.THashedStringList #rtl.Classes.TStringList
 
2574
1VFValueHash
 
2575
1VFNameHash
 
2576
1VFValueHashValid
 
2577
1VFNameHashValid
 
2578
1MUpdateValueHash
 
2579
1MUpdateNameHash
 
2580
2MChanged
 
2581
3MCreate
 
2582
3MDestroy
 
2583
3MIndexOf
 
2584
3MIndexOfName
 
2585
#fcl.IniFiles.TIniFileKey #rtl.System.TObject
 
2586
1VFIdent
 
2587
1VFValue
 
2588
3MCreate
 
2589
3PIdent rw
 
2590
3PValue rw
 
2591
#fcl.IniFiles.TIniFileKeyList #rtl.Classes.TList
 
2592
1MGetItem
 
2593
1MKeyByName
 
2594
3MDestroy
 
2595
3MClear
 
2596
3PItems r
 
2597
#fcl.IniFiles.TIniFileSection #rtl.System.TObject
 
2598
1VFName
 
2599
1VFKeyList
 
2600
3MEmpty
 
2601
3MCreate
 
2602
3MDestroy
 
2603
3PName r
 
2604
3PKeyList r
 
2605
#fcl.IniFiles.TIniFileSectionList #rtl.Classes.TList
 
2606
1MGetItem
 
2607
1MSectionByName
 
2608
3MDestroy
 
2609
3MClear
 
2610
3PItems r
 
2611
#fcl.IniFiles.TCustomIniFile #rtl.System.TObject
 
2612
1VFFileName
 
2613
1VFSectionList
 
2614
1VFEscapeLineFeeds
 
2615
1VFCaseSensitive
 
2616
1VFStripQuotes
 
2617
3MCreate
 
2618
3MDestroy
 
2619
3MSectionExists
 
2620
3MReadString
 
2621
3MWriteString
 
2622
3MReadInteger
 
2623
3MWriteInteger
 
2624
3MReadBool
 
2625
3MWriteBool
 
2626
3MReadDate
 
2627
3MReadDateTime
 
2628
3MReadFloat
 
2629
3MReadTime
 
2630
3MReadBinaryStream
 
2631
3MWriteDate
 
2632
3MWriteDateTime
 
2633
3MWriteFloat
 
2634
3MWriteTime
 
2635
3MWriteBinaryStream
 
2636
3MReadSection
 
2637
3MReadSections
 
2638
3MReadSectionValues
 
2639
3MEraseSection
 
2640
3MDeleteKey
 
2641
3MUpdateFile
 
2642
3MValueExists
 
2643
3PFileName r
 
2644
3PEscapeLineFeeds r
 
2645
3PCaseSensitive rw
 
2646
3PStripQuotes rw
 
2647
#fcl.IniFiles.TIniFile #fcl.IniFiles.TCustomIniFile
 
2648
1VFStream
 
2649
1VFCacheUpdates
 
2650
1VFDirty
 
2651
1MFillSectionList
 
2652
1MDeleteSection
 
2653
1MMaybeDeleteSection
 
2654
1MSetCacheUpdates
 
2655
2MMaybeUpdateFile
 
2656
2PDirty r
 
2657
0MCreate
 
2658
3MDestroy
 
2659
3MReadString
 
2660
3MWriteString
 
2661
3MReadSection
 
2662
3MReadSectionRaw
 
2663
3MReadSections
 
2664
3MReadSectionValues
 
2665
3MEraseSection
 
2666
3MDeleteKey
 
2667
3MUpdateFile
 
2668
3PStream r
 
2669
3PCacheUpdates rw
 
2670
#fcl.IniFiles.TMemIniFile #fcl.IniFiles.TIniFile
 
2671
3MCreate
 
2672
3MClear
 
2673
3MGetStrings
 
2674
3MRename
 
2675
3MSetStrings
 
2676
#fcl.streamcoll.TStreamCollectionItem #rtl.Classes.TCollectionItem
 
2677
2MWriteInteger
 
2678
2MWriteBoolean
 
2679
2MWriteString
 
2680
2MWriteCurrency
 
2681
2MWriteDateTime
 
2682
2MWriteFloat
 
2683
2MReadInteger
 
2684
2MReadBoolean
 
2685
2MReadString
 
2686
2MReadCurrency
 
2687
2MReadDateTime
 
2688
2MReadFloat
 
2689
2MLoadFromStream
 
2690
2MSaveToStream
 
2691
#fcl.streamcoll.TStreamCollection #rtl.Classes.TCollection
 
2692
1VFStreaming
 
2693
2MWriteInteger
 
2694
2MWriteBoolean
 
2695
2MWriteString
 
2696
2MWriteCurrency
 
2697
2MWriteDateTime
 
2698
2MWriteFloat
 
2699
2MReadInteger
 
2700
2MReadBoolean
 
2701
2MReadString
 
2702
2MReadCurrency
 
2703
2MReadDateTime
 
2704
2MReadFloat
 
2705
2MDoSaveToStream
 
2706
2MCurrentStreamVersion
 
2707
2MDoLoadFromStream
 
2708
3MLoadFromStream
 
2709
3MSaveToStream
 
2710
3PStreaming r
 
2711
#fcl.streamcoll.EStreamColl #rtl.sysutils.Exception
 
2712
#fcl.CacheCls.ECacheError #rtl.sysutils.Exception
 
2713
#fcl.CacheCls.TCache #rtl.System.TObject
 
2714
1VFOnIsDataEqual
 
2715
1VFOnFreeSlot
 
2716
1MGetData
 
2717
1MGetSlot
 
2718
1MSetData
 
2719
1MSetMRUSlot
 
2720
1MSetSlotCount
 
2721
2VFSlotCount
 
2722
2VFSlots
 
2723
2VFMRUSlot
 
2724
2VFLRUSlot
 
2725
3MCreate
 
2726
3MDestroy
 
2727
3MAdd
 
2728
3MAddNew
 
2729
3MFindSlot
 
2730
3MIndexOf
 
2731
3MRemove
 
2732
3PData rw
 
2733
3PMRUSlot rw
 
2734
3PLRUSlot r
 
2735
3PSlotCount rw
 
2736
3PSlots r
 
2737
3POnIsDataEqual rw
 
2738
3POnFreeSlot rw
 
2739
#fcl.eventlog.TEventLog #rtl.Classes.TComponent
 
2740
1VfAppendContent
 
2741
1VFEventIDOffset
 
2742
1VFLogHandle
 
2743
1VFStream
 
2744
1VFActive
 
2745
1VFRaiseExceptionOnError
 
2746
1VFIdentification
 
2747
1VFDefaultEventType
 
2748
1VFLogtype
 
2749
1VFFileName
 
2750
1VFTimeStampFormat
 
2751
1VFCustomLogType
 
2752
1VFOnGetCustomCategory
 
2753
1VFOnGetCustomEventID
 
2754
1VFOnGetCustomEvent
 
2755
1VFPaused
 
2756
1MSetActive
 
2757
1MSetIdentification
 
2758
1MSetlogType
 
2759
1MActivateLog
 
2760
1MDeActivateLog
 
2761
1MActivateFileLog
 
2762
1MSetFileName
 
2763
1MActivateSystemLog
 
2764
1MDefaultFileName
 
2765
1MWriteFileLog
 
2766
1MWriteSystemLog
 
2767
1MDeActivateFileLog
 
2768
1MDeActivateSystemLog
 
2769
1MCheckIdentification
 
2770
1MDoGetCustomEventID
 
2771
1MDoGetCustomEventCategory
 
2772
1MDoGetCustomEvent
 
2773
2MCheckInactive
 
2774
2MEnsureActive
 
2775
2MMapTypeToEvent
 
2776
2MMapTypeToCategory
 
2777
2MMapTypeToEventID
 
2778
3MDestroy
 
2779
3MEventTypeToString
 
2780
3MRegisterMessageFile
 
2781
3MUnRegisterMessageFile
 
2782
3MPause
 
2783
3MResume
 
2784
0MLog
 
2785
0MWarning
 
2786
0MError
 
2787
0MDebug
 
2788
0MInfo
 
2789
4PAppendContent rw
 
2790
4PIdentification rw
 
2791
4PLogType rw
 
2792
4PActive rw
 
2793
4PRaiseExceptionOnError rw
 
2794
4PDefaultEventType rw
 
2795
4PFileName rw
 
2796
4PTimeStampFormat rw
 
2797
4PCustomLogType rw
 
2798
4PEventIDOffset rw
 
2799
4POnGetCustomCategory rw
 
2800
4POnGetCustomEventID rw
 
2801
4POnGetCustomEvent rw
 
2802
4PPaused rw
 
2803
#fcl.eventlog.ELogError #rtl.sysutils.Exception
 
2804
#fcl.syncobjs.TSynchroObject #rtl.System.TObject
 
2805
0MAcquire
 
2806
0MRelease
 
2807
#fcl.syncobjs.TCriticalSection #fcl.syncobjs.TSynchroObject
 
2808
1VCriticalSection
 
2809
3MAcquire
 
2810
3MRelease
 
2811
3MEnter
 
2812
3MTryEnter
 
2813
3MLeave
 
2814
3MCreate
 
2815
3MDestroy
 
2816
#fcl.syncobjs.THandleObject #fcl.syncobjs.TSynchroObject
 
2817
2VFHandle
 
2818
2VFLastError
 
2819
3Mdestroy
 
2820
3PHandle r
 
2821
3PLastError r
 
2822
#fcl.syncobjs.TEventObject #fcl.syncobjs.THandleObject
 
2823
1VFManualReset
 
2824
3MCreate
 
2825
3Mdestroy
 
2826
3MResetEvent
 
2827
3MSetEvent
 
2828
3MWaitFor
 
2829
3PManualReset r
 
2830
#fcl.syncobjs.TSimpleEvent #fcl.syncobjs.TEventObject
 
2831
0MCreate
 
2832
#fcl.CustApp.TCustomApplication #rtl.Classes.TComponent
 
2833
1VFEventLogFilter
 
2834
1VFOnException
 
2835
1VFTerminated
 
2836
1VFHelpFile
 
2837
1VFTitle
 
2838
1VFOptionChar
 
2839
1VFCaseSensitiveOptions
 
2840
1VFStopOnException
 
2841
1MGetEnvironmentVar
 
2842
1MGetExeName
 
2843
1MGetLocation
 
2844
1MGetTitle
 
2845
2MSetTitle
 
2846
2MGetConsoleApplication
 
2847
2MDoRun
 
2848
2MGetParams
 
2849
2MGetParamCount
 
2850
2MDoLog
 
2851
3MCreate
 
2852
3MDestroy
 
2853
3MHandleException
 
2854
3MInitialize
 
2855
3MRun
 
2856
3MShowException
 
2857
3MTerminate
 
2858
3MFindOptionIndex
 
2859
0MGetOptionValue
 
2860
0MHasOption
 
2861
0MCheckOptions
 
2862
0MGetEnvironmentList
 
2863
3MLog
 
2864
3PExeName r
 
2865
3PHelpFile rw
 
2866
3PTerminated r
 
2867
3PTitle rw
 
2868
3POnException rw
 
2869
3PConsoleApplication r
 
2870
3PLocation r
 
2871
3PParams r
 
2872
3PParamCount r
 
2873
3PEnvironmentVariable r
 
2874
3POptionChar rw
 
2875
3PCaseSensitiveOptions rw
 
2876
3PStopOnException rw
 
2877
3PEventLogFilter rw
 
2878
#fcl.BlowFish.TBlowFish #rtl.System.TObject
 
2879
1VPBox
 
2880
1VSBox
 
2881
1MF
 
2882
3MCreate
 
2883
3MEncrypt
 
2884
3MDecrypt
 
2885
#fcl.BlowFish.EBlowFishError #rtl.Classes.EStreamError
 
2886
#fcl.BlowFish.TBlowFishStream #rtl.Classes.TOwnerStream
 
2887
1VFBF
 
2888
1VFData
 
2889
1VFBufpos
 
2890
1VFPos
 
2891
2MGetPosition
 
2892
2MInvalidSeek
 
2893
0MCreate
 
2894
3MDestroy
 
2895
3PBlowFish r
 
2896
#fcl.BlowFish.TBlowFishEncryptStream #fcl.BlowFish.TBlowFishStream
 
2897
3MDestroy
 
2898
3MWrite
 
2899
3MSeek
 
2900
3MFlush
 
2901
#fcl.BlowFish.TBlowFishDeCryptStream #fcl.BlowFish.TBlowFishStream
 
2902
3MRead
 
2903
3MSeek
 
2904
#fcl.simpleipc.TIPCServerComm #rtl.System.TObject
 
2905
1VFOwner
 
2906
2MGetInstanceID
 
2907
2MDoError
 
2908
2MSetMsgType
 
2909
2MMsgData
 
2910
3MCreate
 
2911
3POwner r
 
2912
3MStartServer
 
2913
3MStopServer
 
2914
3MPeekMessage
 
2915
3MReadMessage
 
2916
3PInstanceID r
 
2917
#fcl.simpleipc.TSimpleIPC #rtl.Classes.TComponent
 
2918
1MSetActive
 
2919
1MSetServerID
 
2920
2VFBusy
 
2921
2VFActive
 
2922
2VFServerID
 
2923
2MDoError
 
2924
2MCheckInactive
 
2925
2MCheckActive
 
2926
2MActivate
 
2927
2MDeactivate
 
2928
2PBusy r
 
2929
4PActive rw
 
2930
4PServerID rw
 
2931
#fcl.simpleipc.TSimpleIPCServer #fcl.simpleipc.TSimpleIPC
 
2932
1VFGlobal
 
2933
1VFOnMessage
 
2934
1VFMsgType
 
2935
1VFMsgData
 
2936
1MGetInstanceID
 
2937
1MGetStringMessage
 
2938
1MSetGlobal
 
2939
2VFIPCComm
 
2940
2MCommClass
 
2941
2MActivate
 
2942
2MDeactivate
 
2943
2MReadMessage
 
2944
3MCreate
 
2945
3MDestroy
 
2946
3MStartServer
 
2947
3MStopServer
 
2948
3MPeekMessage
 
2949
3PStringMessage r
 
2950
3MGetMessageData
 
2951
3PMsgType r
 
2952
3PMsgData r
 
2953
3PInstanceID r
 
2954
4PGlobal rw
 
2955
4POnMessage rw
 
2956
#fcl.simpleipc.TIPCClientComm #rtl.System.TObject
 
2957
1VFOwner
 
2958
2MDoError
 
2959
3MCreate
 
2960
3POwner r
 
2961
3MConnect
 
2962
3MDisconnect
 
2963
3MServerRunning
 
2964
3MSendMessage
 
2965
#fcl.simpleipc.TSimpleIPCClient #fcl.simpleipc.TSimpleIPC
 
2966
1VFServerInstance
 
2967
1MSetServerInstance
 
2968
2VFIPCComm
 
2969
2MActivate
 
2970
2MDeactivate
 
2971
2MCommClass
 
2972
3MCreate
 
2973
3MDestroy
 
2974
3MConnect
 
2975
3MDisconnect
 
2976
3MServerRunning
 
2977
3MSendMessage
 
2978
0MSendStringMessage
 
2979
0MSendStringMessageFmt
 
2980
3PServerInstance rw
 
2981
#fcl.simpleipc.EIPCError #rtl.sysutils.Exception
 
2982
#fcl.rttiutils.TPropInfoList #rtl.System.TObject
 
2983
1VFList
 
2984
1VFCount
 
2985
1VFSize
 
2986
1MGet
 
2987
3MCreate
 
2988
3MDestroy
 
2989
3MContains
 
2990
3MFind
 
2991
3MDelete
 
2992
3MIntersect
 
2993
3PCount r
 
2994
3PItems r
 
2995
#fcl.rttiutils.TPropsStorage #rtl.System.TObject
 
2996
1VFObject
 
2997
1VFOwner
 
2998
1VFPrefix
 
2999
1VFSection
 
3000
1VFOnReadString
 
3001
1VFOnWriteString
 
3002
1VFOnEraseSection
 
3003
1MStoreIntegerProperty
 
3004
1MStoreCharProperty
 
3005
1MStoreEnumProperty
 
3006
1MStoreFloatProperty
 
3007
1MStoreStringProperty
 
3008
1MStoreSetProperty
 
3009
1MStoreClassProperty
 
3010
1MStoreStringsProperty
 
3011
1MStoreComponentProperty
 
3012
1MStoreLStringProperty
 
3013
1MStoreWCharProperty
 
3014
1MStoreVariantProperty
 
3015
1MLoadLStringProperty
 
3016
1MLoadWCharProperty
 
3017
1MLoadVariantProperty
 
3018
1MStoreInt64Property
 
3019
1MLoadInt64Property
 
3020
1MLoadIntegerProperty
 
3021
1MLoadCharProperty
 
3022
1MLoadEnumProperty
 
3023
1MLoadFloatProperty
 
3024
1MLoadStringProperty
 
3025
1MLoadSetProperty
 
3026
1MLoadClassProperty
 
3027
1MLoadStringsProperty
 
3028
1MLoadComponentProperty
 
3029
1MCreateInfoList
 
3030
1MFreeInfoLists
 
3031
2MReadString
 
3032
2MWriteString
 
3033
2MEraseSection
 
3034
2MGetItemName
 
3035
2MCreateStorage
 
3036
3MStoreAnyProperty
 
3037
3MLoadAnyProperty
 
3038
3MStoreProperties
 
3039
3MLoadProperties
 
3040
3MLoadObjectsProps
 
3041
3MStoreObjectsProps
 
3042
3PAObject rw
 
3043
3PPrefix rw
 
3044
3PSection rw
 
3045
3POnReadString rw
 
3046
3POnWriteString rw
 
3047
3POnEraseSection rw
 
3048
#fcl.AVL_Tree.TAVLTreeNode #rtl.System.TObject
 
3049
3VParent
 
3050
3VLeft
 
3051
3VRight
 
3052
3VBalance
 
3053
3VData
 
3054
3MClear
 
3055
3MTreeDepth
 
3056
#fcl.AVL_Tree.TBaseAVLTreeNodeManager #rtl.System.TObject
 
3057
3MDisposeNode
 
3058
3MNewNode
 
3059
#fcl.AVL_Tree.TAVLTreeNodeEnumerator #rtl.System.TObject
 
3060
1VFTree
 
3061
1VFCurrent
 
3062
3MCreate
 
3063
3MMoveNext
 
3064
3PCurrent r
 
3065
#fcl.AVL_Tree.TAVLTree #rtl.System.TObject
 
3066
1VFOnCompare
 
3067
1VFCount
 
3068
1MBalanceAfterInsert
 
3069
1MBalanceAfterDelete
 
3070
1MFindInsertPos
 
3071
1MSetOnCompare
 
3072
2VfNodeMgrAutoFree
 
3073
2VfNodeMgr
 
3074
3VRoot
 
3075
3MFind
 
3076
3MFindKey
 
3077
3MFindSuccessor
 
3078
3MFindPrecessor
 
3079
3MFindLowest
 
3080
3MFindHighest
 
3081
3MFindNearest
 
3082
3MFindPointer
 
3083
3MFindLeftMost
 
3084
3MFindRightMost
 
3085
3MFindLeftMostKey
 
3086
3MFindRightMostKey
 
3087
3MFindLeftMostSameKey
 
3088
3MFindRightMostSameKey
 
3089
0MAdd
 
3090
3MDelete
 
3091
3MRemove
 
3092
3MRemovePointer
 
3093
3MMoveDataLeftMost
 
3094
3MMoveDataRightMost
 
3095
3POnCompare rw
 
3096
3MClear
 
3097
3MFreeAndClear
 
3098
3MFreeAndDelete
 
3099
3PCount r
 
3100
3MConsistencyCheck
 
3101
3MWriteReportToStream
 
3102
3MReportAsString
 
3103
3MSetNodeManager
 
3104
0MCreate
 
3105
3MDestroy
 
3106
3MGetEnumerator
 
3107
#fcl.AVL_Tree.TAVLTreeNodeMemManager #fcl.AVL_Tree.TBaseAVLTreeNodeManager
 
3108
1VFFirstFree
 
3109
1VFFreeCount
 
3110
1VFCount
 
3111
1VFMinFree
 
3112
1VFMaxFreeRatio
 
3113
1MSetMaxFreeRatio
 
3114
1MSetMinFree
 
3115
1MDisposeFirstFreeNode
 
3116
3MDisposeNode
 
3117
3MNewNode
 
3118
3PMinimumFreeNode rw
 
3119
3PMaximumFreeNodeRatio rw
 
3120
3PCount r
 
3121
3MClear
 
3122
3MCreate
 
3123
3MDestroy
 
3124
#fcl.daemonapp.TCustomDaemon #rtl.Classes.TDataModule
 
3125
1VFController
 
3126
1VFDaemonDef
 
3127
1VFThread
 
3128
1VFStatus
 
3129
1MGetLogger
 
3130
1MSetStatus
 
3131
2MStart
 
3132
2MStop
 
3133
2MPause
 
3134
2MContinue
 
3135
2MExecute
 
3136
2MShutDown
 
3137
2MInstall
 
3138
2MUnInstall
 
3139
2MHandleCustomCode
 
3140
3MLogMessage
 
3141
3MReportStatus
 
3142
3PDefinition r
 
3143
3PDaemonThread r
 
3144
3PController r
 
3145
3PStatus rw
 
3146
3PLogger r
 
3147
#fcl.daemonapp.TDaemon #fcl.daemonapp.TCustomDaemon
 
3148
1VFAfterInstall
 
3149
1VFAfterUnInstall
 
3150
1VFBeforeInstall
 
3151
1VFBeforeUnInstall
 
3152
1VFOnContinue
 
3153
1VFOnCustomControl
 
3154
1VFOnExecute
 
3155
1VFOnPause
 
3156
1VFOnShutDown
 
3157
1VFOnStart
 
3158
1VFOnStop
 
3159
2MStart
 
3160
2MStop
 
3161
2MPause
 
3162
2MContinue
 
3163
2MExecute
 
3164
2MShutDown
 
3165
2MInstall
 
3166
2MUnInstall
 
3167
2MHandleCustomCode
 
3168
3PDefinition
 
3169
3PStatus
 
3170
4POnStart rw
 
3171
4POnStop rw
 
3172
4POnPause rw
 
3173
4POnContinue rw
 
3174
4POnShutDown rw
 
3175
4POnExecute rw
 
3176
4PBeforeInstall rw
 
3177
4PAfterInstall rw
 
3178
4PBeforeUnInstall rw
 
3179
4PAfterUnInstall rw
 
3180
4POnControlCode rw
 
3181
#fcl.daemonapp.TDaemonController #rtl.Classes.TComponent
 
3182
1VFDaemon
 
3183
1VFLastStatus
 
3184
1VFSysData
 
3185
1VFParams
 
3186
1VFCheckPoint
 
3187
3MCreate
 
3188
3MDestroy
 
3189
3MStartService
 
3190
3MMain
 
3191
3MController
 
3192
3MReportStatus
 
3193
3PDaemon r
 
3194
3PParams r
 
3195
3PLastStatus r
 
3196
3PCheckPoint
 
3197
#fcl.daemonapp.TDependency #rtl.Classes.TCollectionItem
 
3198
1VFName
 
3199
1VFIsGroup
 
3200
2MGetDisplayName
 
3201
3MAssign
 
3202
4PName rw
 
3203
4PIsGroup rw
 
3204
#fcl.daemonapp.TDependencies #rtl.Classes.TCollection
 
3205
1VFOwner
 
3206
1MGetItem
 
3207
1MSetItem
 
3208
2MGetOwner
 
3209
3MCreate
 
3210
3PItems rw
 
3211
#fcl.daemonapp.TWinBindings #rtl.Classes.TPersistent
 
3212
1VFDependencies
 
3213
1VFErrCode
 
3214
1VFErrorSeverity
 
3215
1VFLoadGroup
 
3216
1VFPassWord
 
3217
1VFServiceType
 
3218
1VFStartType
 
3219
1VFTagID
 
3220
1VFUserName
 
3221
1VFWaitHint
 
3222
1VFWin32ErrorCode
 
3223
1MSetDependencies
 
3224
3MCreate
 
3225
3MDestroy
 
3226
3MAssign
 
3227
3PErrCode rw
 
3228
3PWin32ErrCode rw
 
3229
4PDependencies rw
 
3230
4PGroupName rw
 
3231
4PPassword rw
 
3232
4PUserName rw
 
3233
4PStartType rw
 
3234
4PWaitHint rw
 
3235
4PIDTag rw
 
3236
4PServiceType rw
 
3237
4PErrorSeverity rw
 
3238
#fcl.daemonapp.TDaemonDef #rtl.Classes.TCollectionItem
 
3239
1VFDaemonClass
 
3240
1VFDaemonClassName
 
3241
1VFDescription
 
3242
1VFDisplayName
 
3243
1VFEnabled
 
3244
1VFInstance
 
3245
1VFLogStatusReport
 
3246
1VFName
 
3247
1VFOnCreateInstance
 
3248
1VFOptions
 
3249
1VFServiceName
 
3250
1VFWinBindings
 
3251
1VFRunArgs
 
3252
1MSetName
 
3253
1MSetWinBindings
 
3254
2MGetDisplayName
 
3255
3MCreate
 
3256
3MDestroy
 
3257
3PDaemonClass r
 
3258
3PInstance rw
 
3259
4PDaemonClassName rw
 
3260
4PName rw
 
3261
4PDescription rw
 
3262
4PDisplayName rw
 
3263
4PRunArguments rw
 
3264
4POptions rw
 
3265
4PEnabled rw
 
3266
4PWinBindings rw
 
3267
4POnCreateInstance rw
 
3268
4PLogStatusReport rw
 
3269
#fcl.daemonapp.TDaemonDefs #rtl.Classes.TCollection
 
3270
1VFOwner
 
3271
1MGetDaemonDef
 
3272
1MSetDaemonDef
 
3273
2MBindClasses
 
3274
2MGetOwner
 
3275
3MCreate
 
3276
3MIndexOfDaemonDef
 
3277
3MFindDaemonDef
 
3278
3MDaemonDefByName
 
3279
3PDaemons rw
 
3280
#fcl.daemonapp.TCustomDaemonMapper #rtl.Classes.TComponent
 
3281
1VFDaemonDefs
 
3282
1VFOnCreate
 
3283
1VFOnDestroy
 
3284
1VFOnInstall
 
3285
1VFOnRun
 
3286
1VFOnUnInStall
 
3287
1MSetDaemonDefs
 
3288
2MCreateDefs
 
3289
2MDoOnCreate
 
3290
2MDoOnDestroy
 
3291
2MDoOnInstall
 
3292
2MDoOnUnInstall
 
3293
2MDoOnRun
 
3294
3MCreate
 
3295
3MDestroy
 
3296
4PDaemonDefs rw
 
3297
4POnCreate rw
 
3298
4POnDestroy rw
 
3299
4POnRun rw
 
3300
4POnInstall rw
 
3301
4POnUnInstall rw
 
3302
#fcl.daemonapp.TDaemonMapper #fcl.daemonapp.TCustomDaemonMapper
 
3303
0MCreate
 
3304
0MCreateNew
 
3305
#fcl.daemonapp.TDaemonThread #rtl.Classes.TThread
 
3306
1VFDaemon
 
3307
2MStartServiceExecute
 
3308
2MHandleControlCode
 
3309
3MCreate
 
3310
3MExecute
 
3311
3MCheckControlMessage
 
3312
3MStopDaemon
 
3313
3MPauseDaemon
 
3314
3MContinueDaemon
 
3315
3MShutDownDaemon
 
3316
3MInterrogateDaemon
 
3317
3PDaemon r
 
3318
#fcl.daemonapp.TCustomDaemonApplication #fcl.CustApp.TCustomApplication
 
3319
1VFGUIHandle
 
3320
1VFGUIMainLoop
 
3321
1VFEventLog
 
3322
1VFMapper
 
3323
1VFOnRun
 
3324
1VFRunMode
 
3325
1VFSysData
 
3326
1VFControllerCount
 
3327
1MBindDaemonDefs
 
3328
1MInstallRun
 
3329
1MSysInstallDaemon
 
3330
1MSysUnInstallDaemon
 
3331
1MUnInstallRun
 
3332
1MRunDaemonsRun
 
3333
1MMain
 
3334
1MRunGUIloop
 
3335
2MSysStartUnInstallDaemons
 
3336
2MSysEndUnInstallDaemons
 
3337
2MSysStartInstallDaemons
 
3338
2MSysEndInstallDaemons
 
3339
2MSysStartRunDaemons
 
3340
2MSysEndRunDaemons
 
3341
2MCreateDaemonController
 
3342
2MCreateServiceMapper
 
3343
2MCreateDaemonInstance
 
3344
2MRemoveController
 
3345
2MGetEventLog
 
3346
2MDoRun
 
3347
2MDoLog
 
3348
2PSysData rw
 
3349
3MDestroy
 
3350
3MShowException
 
3351
3MCreateDaemon
 
3352
3MStopDaemons
 
3353
3MInstallDaemons
 
3354
3MRunDaemons
 
3355
3MUnInstallDaemons
 
3356
3MShowHelp
 
3357
3MCreateForm
 
3358
3POnRun rw
 
3359
3PEventLog r
 
3360
3PGUIMainLoop rw
 
3361
3PGuiHandle rw
 
3362
3PRunMode r
 
3363
#fcl.daemonapp.TDaemonApplication #fcl.daemonapp.TCustomDaemonApplication
 
3364
#fcl.daemonapp.EDaemon #rtl.sysutils.Exception
 
3365
#fcl.libtar.TTarArchive #rtl.System.TObject
 
3366
2VFStream
 
3367
2VFOwnsStream
 
3368
2VFBytesToGo
 
3369
0MCreate
 
3370
3MDestroy
 
3371
3MReset
 
3372
3MFindNext
 
3373
0MReadFile
 
3374
3MGetFilePos
 
3375
3MSetFilePos
 
3376
#fcl.libtar.TTarWriter #rtl.System.TObject
 
3377
2VFStream
 
3378
2VFOwnsStream
 
3379
2VFFinalized
 
3380
2VFPermissions
 
3381
2VFUID
 
3382
2VFGID
 
3383
2VFUserName
 
3384
2VFGroupName
 
3385
2VFMode
 
3386
2VFMagic
 
3387
2MCreateEmpty
 
3388
0MCreate
 
3389
3MDestroy
 
3390
3MAddFile
 
3391
3MAddStream
 
3392
3MAddString
 
3393
3MAddDir
 
3394
3MAddSymbolicLink
 
3395
3MAddLink
 
3396
3MAddVolumeHeader
 
3397
3MFinalize
 
3398
3PPermissions rw
 
3399
3PUID rw
 
3400
3PGID rw
 
3401
3PUserName rw
 
3402
3PGroupName rw
 
3403
3PMode rw
 
3404
3PMagic rw
 
3405
#fcl.ascii85.TASCII85RingBuffer #rtl.System.TObject
 
3406
1VfBuffer
 
3407
1VfBufferReadPosition
 
3408
1VfBufferWritePosition
 
3409
1VfBufferFillCount
 
3410
2MGetBufferSize
 
3411
4PFillCount r
 
3412
4PSize r
 
3413
4MWrite
 
3414
4MRead
 
3415
#fcl.ascii85.TASCII85DecoderStream #rtl.Classes.TOwnerStream
 
3416
1VfBExpectBoundary
 
3417
1VfTuple
 
3418
1VfState
 
3419
1VfBEOF
 
3420
1VfBSourceEOF
 
3421
1VfBuffer
 
3422
1VfPosition
 
3423
1VfEncodedBuffer
 
3424
1MBufferByte
 
3425
1MBufferTuple
 
3426
4MCreate
 
3427
4MDecode
 
3428
4MClose
 
3429
4MClosedP
 
3430
4PBExpectBoundary rw
 
3431
2MGetPosition
 
3432
3MDestroy
 
3433
3MRead
 
3434
0MSeek
 
3435
#fcl.ascii85.TASCII85EncoderStream #rtl.Classes.TOwnerStream
 
3436
1VFPos
 
3437
1VFTuple
 
3438
1VFCount
 
3439
1VFWidth
 
3440
1VFBoundary
 
3441
2MWriteBoundary
 
3442
2MFlush
 
3443
2MEncode
 
3444
3MCreate
 
3445
3MDestroy
 
3446
3MWrite
 
3447
3PWidth r
 
3448
3PBoundary r
 
3449
#fcl.fpTimer.TFPCustomTimer #rtl.Classes.TComponent
 
3450
1VFInterval
 
3451
1VFDriver
 
3452
1VFOnTimer
 
3453
1VFContinue
 
3454
1VFRunning
 
3455
1VFEnabled
 
3456
1MSetEnabled
 
3457
2PContinue rw
 
3458
2MTimer
 
3459
2MCreateTimerDriver
 
3460
3MCreate
 
3461
3MDestroy
 
3462
3MStartTimer
 
3463
3MStopTimer
 
3464
2PEnabled rw
 
3465
2PInterval rw
 
3466
2POnTimer rw
 
3467
#fcl.fpTimer.TFPTimer #fcl.fpTimer.TFPCustomTimer
 
3468
4PEnabled
 
3469
4PInterval
 
3470
4POnTimer
 
3471
#fcl.fpTimer.TFPTimerDriver #rtl.System.TObject
 
3472
2VFTimer
 
3473
3MCreate
 
3474
3MStartTimer
 
3475
3MStopTimer
 
3476
3PTimer r
 
3477
#fcl.db.EDatabaseError #rtl.sysutils.Exception
 
3478
#fcl.db.EUpdateError #fcl.db.EDatabaseError
 
3479
1VFContext
 
3480
1VFErrorCode
 
3481
1VFOriginalException
 
3482
1VFPreviousError
 
3483
3MCreate
 
3484
3MDestroy
 
3485
3PContext r
 
3486
3PErrorCode r
 
3487
3POriginalException r
 
3488
3PPreviousError r
 
3489
#fcl.db.TNamedItem #rtl.Classes.TCollectionItem
 
3490
1VFName
 
3491
2MGetDisplayName
 
3492
2MSetDisplayName
 
3493
3PDisplayName rw
 
3494
4PName rw
 
3495
#fcl.db.TDefCollection #rtl.Classes.TOwnedCollection
 
3496
1VFDataset
 
3497
1VFUpdated
 
3498
2MSetItemName
 
3499
3Mcreate
 
3500
3MFind
 
3501
3MGetItemNames
 
3502
3MIndexOf
 
3503
3PDataset r
 
3504
3PUpdated rw
 
3505
#fcl.db.TFieldDef #fcl.db.TNamedItem
 
3506
1VFDataType
 
3507
1VFFieldNo
 
3508
1VFInternalCalcField
 
3509
1VFPrecision
 
3510
1VFRequired
 
3511
1VFSize
 
3512
1VFAttributes
 
3513
1MGetFieldClass
 
3514
1MSetAttributes
 
3515
1MSetDataType
 
3516
1MSetPrecision
 
3517
1MSetSize
 
3518
1MSetRequired
 
3519
0MCreate
 
3520
3MDestroy
 
3521
3MAssign
 
3522
3MCreateField
 
3523
3PFieldClass r
 
3524
3PFieldNo r
 
3525
3PInternalCalcField rw
 
3526
3PRequired rw
 
3527
4PAttributes rw
 
3528
4PDataType rw
 
3529
4PPrecision rw
 
3530
4PSize rw
 
3531
#fcl.db.TFieldDefs #fcl.db.TDefCollection
 
3532
1VFHiddenFields
 
3533
1MGetItem
 
3534
1MSetItem
 
3535
3MCreate
 
3536
0MAdd
 
3537
3MAddFieldDef
 
3538
3MAssign
 
3539
3MFind
 
3540
3MUpdate
 
3541
3MMakeNameUnique
 
3542
3PHiddenFields rw
 
3543
3PItems rw
 
3544
#fcl.db.TLookupList #rtl.System.TObject
 
3545
1VFList
 
3546
3MCreate
 
3547
3MDestroy
 
3548
3MAdd
 
3549
3MClear
 
3550
3MFirstKeyByValue
 
3551
3MValueOfKey
 
3552
3MValuesToStrings
 
3553
#fcl.db.TField #rtl.Classes.TComponent
 
3554
1VFAlignment
 
3555
1VFAttributeSet
 
3556
1VFCalculated
 
3557
1VFConstraintErrorMessage
 
3558
1VFCustomConstraint
 
3559
1VFDataSet
 
3560
1VFDataType
 
3561
1VFDefaultExpression
 
3562
1VFDisplayLabel
 
3563
1VFDisplayWidth
 
3564
1VFEditMask
 
3565
1VFFieldKind
 
3566
1VFFieldName
 
3567
1VFFieldNo
 
3568
1VFFields
 
3569
1VFHasConstraints
 
3570
1VFImportedConstraint
 
3571
1VFIsIndexField
 
3572
1VFKeyFields
 
3573
1VFLookupCache
 
3574
1VFLookupDataSet
 
3575
1VFLookupKeyfields
 
3576
1VFLookupresultField
 
3577
1VFLookupList
 
3578
1VFOffset
 
3579
1VFOnChange
 
3580
1VFOnGetText
 
3581
1VFOnSetText
 
3582
1VFOnValidate
 
3583
1VFOrigin
 
3584
1VFReadOnly
 
3585
1VFRequired
 
3586
1VFSize
 
3587
1VFValidChars
 
3588
1VFValueBuffer
 
3589
1VFValidating
 
3590
1VFVisible
 
3591
1VFProviderFlags
 
3592
1MGetIndex
 
3593
1MGetLookup
 
3594
1MSetAlignment
 
3595
1MSetIndex
 
3596
1MGetDisplayText
 
3597
1MGetEditText
 
3598
1MSetEditText
 
3599
1MSetDisplayLabel
 
3600
1MSetDisplayWidth
 
3601
1MGetDisplayWidth
 
3602
1MSetLookup
 
3603
1MSetReadOnly
 
3604
1MSetVisible
 
3605
1MIsDisplayStored
 
3606
1MGetLookupList
 
3607
1MCalcLookupValue
 
3608
2MAccessError
 
3609
2MCheckInactive
 
3610
2MCheckTypeSize
 
3611
2MChange
 
3612
2MDataChanged
 
3613
2MFreeBuffers
 
3614
2MGetAsBCD
 
3615
2MGetAsBoolean
 
3616
2MGetAsBytes
 
3617
2MGetAsCurrency
 
3618
2MGetAsLargeInt
 
3619
2MGetAsDateTime
 
3620
2MGetAsFloat
 
3621
2MGetAsLongint
 
3622
2MGetAsInteger
 
3623
2MGetAsVariant
 
3624
2MGetOldValue
 
3625
2MGetAsString
 
3626
2MGetAsWideString
 
3627
2MGetCanModify
 
3628
2MGetClassDesc
 
3629
2MGetDataSize
 
3630
2MGetDefaultWidth
 
3631
2MGetDisplayName
 
3632
2MGetCurValue
 
3633
2MGetNewValue
 
3634
2MGetIsNull
 
3635
2MGetParentComponent
 
3636
2MGetText
 
3637
2MHasParent
 
3638
2MNotification
 
3639
2MPropertyChanged
 
3640
2MReadState
 
3641
2MSetAsBCD
 
3642
2MSetAsBoolean
 
3643
2MSetAsBytes
 
3644
2MSetAsCurrency
 
3645
2MSetAsDateTime
 
3646
2MSetAsFloat
 
3647
2MSetAsLongint
 
3648
2MSetAsInteger
 
3649
2MSetAsLargeint
 
3650
2MSetAsVariant
 
3651
2MSetAsString
 
3652
2MSetAsWideString
 
3653
2MSetDataset
 
3654
2MSetDataType
 
3655
2MSetNewValue
 
3656
2MSetSize
 
3657
2MSetParentComponent
 
3658
2MSetText
 
3659
2MSetVarValue
 
3660
3MCreate
 
3661
3MDestroy
 
3662
3MAssign
 
3663
3MAssignValue
 
3664
3MClear
 
3665
3MFocusControl
 
3666
0MGetData
 
3667
3MIsBlob
 
3668
3MIsValidChar
 
3669
3MRefreshLookupList
 
3670
0MSetData
 
3671
3MSetFieldType
 
3672
3MValidate
 
3673
3PAsBCD rw
 
3674
3PAsBoolean rw
 
3675
3PAsBytes rw
 
3676
3PAsCurrency rw
 
3677
3PAsDateTime rw
 
3678
3PAsFloat rw
 
3679
3PAsLongint rw
 
3680
3PAsLargeInt rw
 
3681
3PAsInteger rw
 
3682
3PAsString rw
 
3683
3PAsWideString rw
 
3684
3PAsVariant rw
 
3685
3PAttributeSet rw
 
3686
3PCalculated rw
 
3687
3PCanModify r
 
3688
3PCurValue r
 
3689
3PDataSet rw
 
3690
3PDataSize r
 
3691
3PDataType r
 
3692
3PDisplayName r
 
3693
3PDisplayText r
 
3694
3PEditMask rw
 
3695
3PEditMaskPtr r
 
3696
3PFieldNo r
 
3697
3PIsIndexField r
 
3698
3PIsNull r
 
3699
3PLookup rw
 
3700
3PNewValue rw
 
3701
3POffset r
 
3702
3PSize rw
 
3703
3PText rw
 
3704
3PValidChars r
 
3705
3PValue rw
 
3706
3POldValue r
 
3707
3PLookupList r
 
3708
4PAlignment rw
 
3709
4PCustomConstraint rw
 
3710
4PConstraintErrorMessage rw
 
3711
4PDefaultExpression rw
 
3712
4PDisplayLabel rws
 
3713
4PDisplayWidth rw
 
3714
4PFieldKind rw
 
3715
4PFieldName rw
 
3716
4PHasConstraints r
 
3717
4PIndex rw
 
3718
4PImportedConstraint rw
 
3719
4PKeyFields rw
 
3720
4PLookupCache rw
 
3721
4PLookupDataSet rw
 
3722
4PLookupKeyFields rw
 
3723
4PLookupResultField rw
 
3724
4POrigin rw
 
3725
4PProviderFlags rw
 
3726
4PReadOnly rw
 
3727
4PRequired rw
 
3728
4PVisible rw
 
3729
4POnChange rw
 
3730
4POnGetText rw
 
3731
4POnSetText rw
 
3732
4POnValidate rw
 
3733
#fcl.db.TStringField #fcl.db.TField
 
3734
1VFFixedChar
 
3735
1VFTransliterate
 
3736
2MCheckTypeSize
 
3737
2MGetAsBoolean
 
3738
2MGetAsDateTime
 
3739
2MGetAsFloat
 
3740
2MGetAsLongint
 
3741
2MGetAsString
 
3742
2MGetAsVariant
 
3743
2MGetDataSize
 
3744
2MGetDefaultWidth
 
3745
2MGetText
 
3746
2MGetValue
 
3747
2MSetAsBoolean
 
3748
2MSetAsDateTime
 
3749
2MSetAsFloat
 
3750
2MSetAsLongint
 
3751
2MSetAsString
 
3752
2MSetVarValue
 
3753
3MCreate
 
3754
3MSetFieldType
 
3755
3PFixedChar rw
 
3756
3PTransliterate rw
 
3757
3PValue rw
 
3758
4PEditMask
 
3759
4PSize
 
3760
#fcl.db.TWideStringField #fcl.db.TStringField
 
3761
2MCheckTypeSize
 
3762
2MGetValue
 
3763
2MGetAsString
 
3764
2MSetAsString
 
3765
2MGetAsVariant
 
3766
2MSetVarValue
 
3767
2MGetAsWideString
 
3768
2MSetAsWideString
 
3769
2MGetDataSize
 
3770
3MCreate
 
3771
3MSetFieldType
 
3772
3PValue rw
 
3773
#fcl.db.TNumericField #fcl.db.TField
 
3774
1VFDisplayFormat
 
3775
1VFEditFormat
 
3776
2MCheckTypeSize
 
3777
2MRangeError
 
3778
2MSetDisplayFormat
 
3779
2MSetEditFormat
 
3780
2MGetAsBoolean
 
3781
2MSetAsBoolean
 
3782
3MCreate
 
3783
4PAlignment
 
3784
4PDisplayFormat rw
 
3785
4PEditFormat rw
 
3786
#fcl.db.TLongintField #fcl.db.TNumericField
 
3787
1VFMinValue
 
3788
1VFMaxValue
 
3789
1VFMinRange
 
3790
1VFMAxRange
 
3791
1MSetMinValue
 
3792
1MSetMaxValue
 
3793
2MGetAsFloat
 
3794
2MGetAsLongint
 
3795
2MGetAsString
 
3796
2MGetAsVariant
 
3797
2MGetDataSize
 
3798
2MGetText
 
3799
2MGetValue
 
3800
2MSetAsFloat
 
3801
2MSetAsLongint
 
3802
2MSetAsString
 
3803
2MSetVarValue
 
3804
2MGetAsLargeint
 
3805
2MSetAsLargeint
 
3806
3MCreate
 
3807
3MCheckRange
 
3808
3PValue rw
 
3809
4PMaxValue rw
 
3810
4PMinValue rw
 
3811
#fcl.db.TIntegerField #fcl.db.TLongintField
 
3812
#fcl.db.TLargeintField #fcl.db.TNumericField
 
3813
1VFMinValue
 
3814
1VFMaxValue
 
3815
1VFMinRange
 
3816
1VFMAxRange
 
3817
1MSetMinValue
 
3818
1MSetMaxValue
 
3819
2MGetAsFloat
 
3820
2MGetAsLongint
 
3821
2MGetAsLargeint
 
3822
2MGetAsString
 
3823
2MGetAsVariant
 
3824
2MGetDataSize
 
3825
2MGetText
 
3826
2MGetValue
 
3827
2MSetAsFloat
 
3828
2MSetAsLongint
 
3829
2MSetAsLargeint
 
3830
2MSetAsString
 
3831
2MSetVarValue
 
3832
3MCreate
 
3833
3MCheckRange
 
3834
3PValue rw
 
3835
4PMaxValue rw
 
3836
4PMinValue rw
 
3837
#fcl.db.TSmallintField #fcl.db.TLongintField
 
3838
2MGetDataSize
 
3839
3MCreate
 
3840
#fcl.db.TWordField #fcl.db.TLongintField
 
3841
2MGetDataSize
 
3842
3MCreate
 
3843
#fcl.db.TAutoIncField #fcl.db.TLongintField
 
3844
2MSetAsLongInt
 
3845
3MCreate
 
3846
#fcl.db.TFloatField #fcl.db.TNumericField
 
3847
1VFCurrency
 
3848
1VFMaxValue
 
3849
1VFMinValue
 
3850
1VFPrecision
 
3851
1MSetCurrency
 
3852
1MSetPrecision
 
3853
2MGetAsFloat
 
3854
2MGetAsLongint
 
3855
2MGetAsVariant
 
3856
2MGetAsString
 
3857
2MGetDataSize
 
3858
2MGetText
 
3859
2MSetAsFloat
 
3860
2MSetAsLongint
 
3861
2MSetAsString
 
3862
2MSetVarValue
 
3863
3MCreate
 
3864
3MCheckRange
 
3865
3PValue rw
 
3866
4PCurrency rw
 
3867
4PMaxValue rw
 
3868
4PMinValue rw
 
3869
4PPrecision rw
 
3870
#fcl.db.TCurrencyField #fcl.db.TFloatField
 
3871
3MCreate
 
3872
4PCurrency
 
3873
#fcl.db.TBooleanField #fcl.db.TField
 
3874
1VFDisplayValues
 
3875
1VFDisplays
 
3876
1MSetDisplayValues
 
3877
2MGetAsBoolean
 
3878
2MGetAsString
 
3879
2MGetAsVariant
 
3880
2MGetAsInteger
 
3881
2MGetDataSize
 
3882
2MGetDefaultWidth
 
3883
2MSetAsBoolean
 
3884
2MSetAsString
 
3885
2MSetAsInteger
 
3886
2MSetVarValue
 
3887
3MCreate
 
3888
3PValue rw
 
3889
4PDisplayValues rw
 
3890
#fcl.db.TDateTimeField #fcl.db.TField
 
3891
1VFDisplayFormat
 
3892
1MSetDisplayFormat
 
3893
2MGetAsDateTime
 
3894
2MGetAsFloat
 
3895
2MGetAsString
 
3896
2MGetAsVariant
 
3897
2MGetDataSize
 
3898
2MGetText
 
3899
2MSetAsDateTime
 
3900
2MSetAsFloat
 
3901
2MSetAsString
 
3902
2MSetVarValue
 
3903
3MCreate
 
3904
3PValue rw
 
3905
4PDisplayFormat rw
 
3906
4PEditMask
 
3907
#fcl.db.TDateField #fcl.db.TDateTimeField
 
3908
3MCreate
 
3909
#fcl.db.TTimeField #fcl.db.TDateTimeField
 
3910
2MSetAsString
 
3911
3MCreate
 
3912
#fcl.db.TBinaryField #fcl.db.TField
 
3913
2MCheckTypeSize
 
3914
2MGetAsBytes
 
3915
2MGetAsString
 
3916
2MGetAsVariant
 
3917
2MGetText
 
3918
2MSetAsBytes
 
3919
2MSetAsString
 
3920
2MSetText
 
3921
2MSetVarValue
 
3922
3MCreate
 
3923
4PSize
 
3924
#fcl.db.TBytesField #fcl.db.TBinaryField
 
3925
2MGetDataSize
 
3926
3MCreate
 
3927
#fcl.db.TVarBytesField #fcl.db.TBytesField
 
3928
2MGetDataSize
 
3929
3MCreate
 
3930
#fcl.db.TBCDField #fcl.db.TNumericField
 
3931
1VFMinValue
 
3932
1VFMaxValue
 
3933
1VFPrecision
 
3934
1VFCurrency
 
3935
2MCheckTypeSize
 
3936
2MGetAsCurrency
 
3937
2MGetAsFloat
 
3938
2MGetAsLongint
 
3939
2MGetAsString
 
3940
2MGetValue
 
3941
2MGetAsVariant
 
3942
2MGetDataSize
 
3943
2MGetDefaultWidth
 
3944
2MGetText
 
3945
2MSetAsFloat
 
3946
2MSetAsLongint
 
3947
2MSetAsString
 
3948
2MSetAsCurrency
 
3949
2MSetVarValue
 
3950
3MCreate
 
3951
3MCheckRange
 
3952
3PValue rw
 
3953
4PPrecision rw
 
3954
4PCurrency rw
 
3955
4PMaxValue rw
 
3956
4PMinValue rw
 
3957
4PSize
 
3958
#fcl.db.TFMTBCDField #fcl.db.TNumericField
 
3959
1VFMinValue
 
3960
1VFMaxValue
 
3961
1VFPrecision
 
3962
1VFCurrency
 
3963
1MGetMaxValue
 
3964
1MGetMinValue
 
3965
1MSetMaxValue
 
3966
1MSetMinValue
 
3967
2MCheckTypeSize
 
3968
2MGetAsBCD
 
3969
2MGetAsCurrency
 
3970
2MGetAsFloat
 
3971
2MGetAsLongint
 
3972
2MGetAsString
 
3973
2MGetAsVariant
 
3974
2MGetDataSize
 
3975
2MGetDefaultWidth
 
3976
2MGetText
 
3977
2MSetAsBCD
 
3978
2MSetAsFloat
 
3979
2MSetAsLongint
 
3980
2MSetAsString
 
3981
2MSetAsCurrency
 
3982
2MSetVarValue
 
3983
3MCreate
 
3984
3MCheckRange
 
3985
3PValue rw
 
3986
4PPrecision rw
 
3987
4PCurrency rw
 
3988
4PMaxValue rw
 
3989
4PMinValue rw
 
3990
4PSize
 
3991
#fcl.db.TBlobField #fcl.db.TField
 
3992
1VFBlobType
 
3993
1VFModified
 
3994
1VFTransliterate
 
3995
1MGetBlobStream
 
3996
2MFreeBuffers
 
3997
2MGetAsString
 
3998
2MGetAsVariant
 
3999
2MGetBlobSize
 
4000
2MGetIsNull
 
4001
2MGetText
 
4002
2MSetAsString
 
4003
2MSetText
 
4004
2MSetVarValue
 
4005
2MGetAsWideString
 
4006
2MSetAsWideString
 
4007
3MCreate
 
4008
3MClear
 
4009
3MIsBlob
 
4010
3MLoadFromFile
 
4011
3MLoadFromStream
 
4012
3MSaveToFile
 
4013
3MSaveToStream
 
4014
3MSetFieldType
 
4015
3PBlobSize r
 
4016
3PModified rw
 
4017
3PValue rw
 
4018
3PTransliterate rw
 
4019
4PBlobType rw
 
4020
4PSize
 
4021
#fcl.db.TMemoField #fcl.db.TBlobField
 
4022
2MGetAsWideString
 
4023
2MSetAsWideString
 
4024
3MCreate
 
4025
4PTransliterate
 
4026
#fcl.db.TWideMemoField #fcl.db.TBlobField
 
4027
2MGetAsVariant
 
4028
2MSetVarValue
 
4029
2MGetAsString
 
4030
2MSetAsString
 
4031
3MCreate
 
4032
3PValue rw
 
4033
#fcl.db.TGraphicField #fcl.db.TBlobField
 
4034
3MCreate
 
4035
#fcl.db.TVariantField #fcl.db.TField
 
4036
2MCheckTypeSize
 
4037
2MGetAsBoolean
 
4038
2MSetAsBoolean
 
4039
2MGetAsDateTime
 
4040
2MSetAsDateTime
 
4041
2MGetAsFloat
 
4042
2MSetAsFloat
 
4043
2MGetAsInteger
 
4044
2MSetAsInteger
 
4045
2MGetAsString
 
4046
2MSetAsString
 
4047
2MGetAsWideString
 
4048
2MSetAsWideString
 
4049
2MGetAsVariant
 
4050
2MSetVarValue
 
4051
2MGetDefaultWidth
 
4052
3MCreate
 
4053
#fcl.db.TGuidField #fcl.db.TStringField
 
4054
2MCheckTypeSize
 
4055
2MGetDefaultWidth
 
4056
2MGetAsGuid
 
4057
2MSetAsGuid
 
4058
3MCreate
 
4059
3PAsGuid rw
 
4060
#fcl.db.TIndexDef #fcl.db.TNamedItem
 
4061
1VFCaseinsFields
 
4062
1VFDescFields
 
4063
1VFExpression
 
4064
1VFFields
 
4065
1VFOptions
 
4066
1VFSource
 
4067
2MAssign
 
4068
2MGetExpression
 
4069
2MSetCaseInsFields
 
4070
2MSetDescFields
 
4071
2MSetExpression
 
4072
3MCreate
 
4073
3PExpression rw
 
4074
3PFields rw
 
4075
3PCaseInsFields rw
 
4076
3PDescFields rw
 
4077
3POptions rw
 
4078
3PSource rw
 
4079
#fcl.db.TIndexDefs #fcl.db.TDefCollection
 
4080
1MGetItem
 
4081
1MSetItem
 
4082
3MCreate
 
4083
3MAdd
 
4084
3MAddIndexDef
 
4085
3MFind
 
4086
3MFindIndexForFields
 
4087
3MGetIndexForFields
 
4088
3MUpdate
 
4089
3PItems rw
 
4090
#fcl.db.TCheckConstraint #rtl.Classes.TCollectionItem
 
4091
1VFCustomConstraint
 
4092
1VFErrorMessage
 
4093
1VFFromDictionary
 
4094
1VFImportedConstraint
 
4095
3MAssign
 
4096
4PCustomConstraint rw
 
4097
4PErrorMessage rw
 
4098
4PFromDictionary rw
 
4099
4PImportedConstraint rw
 
4100
#fcl.db.TCheckConstraints #rtl.Classes.TCollection
 
4101
1MGetItem
 
4102
1MSetItem
 
4103
2MGetOwner
 
4104
3MCreate
 
4105
3MAdd
 
4106
3PItems rw
 
4107
#fcl.db.TFieldsEnumerator #rtl.System.TObject
 
4108
1VFPosition
 
4109
1VFFields
 
4110
1MGetCurrent
 
4111
3MCreate
 
4112
3MMoveNext
 
4113
3PCurrent r
 
4114
#fcl.db.Tfields #rtl.System.TObject
 
4115
1VFDataset
 
4116
1VFFieldList
 
4117
1VFOnChange
 
4118
1VFValidFieldKinds
 
4119
2MChanged
 
4120
2MCheckfieldKind
 
4121
2MGetCount
 
4122
2MGetField
 
4123
2MSetField
 
4124
2MSetFieldIndex
 
4125
2POnChange rw
 
4126
2PValidFieldKinds r
 
4127
3MCreate
 
4128
3MDestroy
 
4129
3MAdd
 
4130
3MCheckFieldName
 
4131
3MCheckFieldNames
 
4132
3MClear
 
4133
3MFindField
 
4134
3MFieldByName
 
4135
3MFieldByNumber
 
4136
3MGetEnumerator
 
4137
3MGetFieldNames
 
4138
3MIndexOf
 
4139
3MRemove
 
4140
3PCount r
 
4141
3PDataset r
 
4142
3PFields rw
 
4143
#fcl.db.TParam #rtl.Classes.TCollectionItem
 
4144
1VFNativeStr
 
4145
1VFValue
 
4146
1VFPrecision
 
4147
1VFNumericScale
 
4148
1VFName
 
4149
1VFDataType
 
4150
1VFBound
 
4151
1VFParamType
 
4152
1VFSize
 
4153
1MGetDataSet
 
4154
1MIsParamStored
 
4155
2MAssignParam
 
4156
2MAssignTo
 
4157
2MGetAsBoolean
 
4158
2MGetAsCurrency
 
4159
2MGetAsDateTime
 
4160
2MGetAsFloat
 
4161
2MGetAsInteger
 
4162
2MGetAsLargeInt
 
4163
2MGetAsMemo
 
4164
2MGetAsString
 
4165
2MGetAsVariant
 
4166
2MGetAsFMTBCD
 
4167
2MGetDisplayName
 
4168
2MGetIsNull
 
4169
2MIsEqual
 
4170
2MSetAsBlob
 
4171
2MSetAsBoolean
 
4172
2MSetAsCurrency
 
4173
2MSetAsDate
 
4174
2MSetAsDateTime
 
4175
2MSetAsFloat
 
4176
2MSetAsInteger
 
4177
2MSetAsLargeInt
 
4178
2MSetAsMemo
 
4179
2MSetAsSmallInt
 
4180
2MSetAsString
 
4181
2MSetAsTime
 
4182
2MSetAsVariant
 
4183
2MSetAsWord
 
4184
2MSetAsFMTBCD
 
4185
2MSetDataType
 
4186
2MSetText
 
4187
2MGetAsWideString
 
4188
2MSetAsWideString
 
4189
0MCreate
 
4190
3MAssign
 
4191
3MAssignField
 
4192
3MAssignToField
 
4193
3MAssignFieldValue
 
4194
3MAssignFromField
 
4195
3MClear
 
4196
3MGetData
 
4197
3MGetDataSize
 
4198
3MLoadFromFile
 
4199
3MLoadFromStream
 
4200
3MSetBlobData
 
4201
3MSetData
 
4202
3PAsBlob rw
 
4203
3PAsBoolean rw
 
4204
3PAsCurrency rw
 
4205
3PAsDate rw
 
4206
3PAsDateTime rw
 
4207
3PAsFloat rw
 
4208
3PAsInteger rw
 
4209
3PAsLargeInt rw
 
4210
3PAsMemo rw
 
4211
3PAsSmallInt rw
 
4212
3PAsString rw
 
4213
3PAsTime rw
 
4214
3PAsWord rw
 
4215
3PAsFMTBCD rw
 
4216
3PBound rw
 
4217
3PDataset r
 
4218
3PIsNull r
 
4219
3PNativeStr rw
 
4220
3PText rw
 
4221
3PValue rws
 
4222
3PAsWideString rw
 
4223
4PDataType rw
 
4224
4PName rw
 
4225
4PNumericScale rw
 
4226
4PParamType rw
 
4227
4PPrecision rw
 
4228
4PSize rw
 
4229
#fcl.db.TParams #rtl.Classes.TCollection
 
4230
1VFOwner
 
4231
1MGetItem
 
4232
1MGetParamValue
 
4233
1MSetItem
 
4234
1MSetParamValue
 
4235
2MAssignTo
 
4236
2MGetDataSet
 
4237
2MGetOwner
 
4238
0MCreate
 
4239
3MAddParam
 
4240
3MAssignValues
 
4241
3MCreateParam
 
4242
3MFindParam
 
4243
3MGetParamList
 
4244
3MIsEqual
 
4245
3MParamByName
 
4246
0MParseSQL
 
4247
3MRemoveParam
 
4248
3MCopyParamValuesFromDataset
 
4249
3PDataset r
 
4250
3PItems rw
 
4251
3PParamValues rw
 
4252
#fcl.db.IProviderSupport #rtl.System.IUnknown
 
4253
0MPSEndTransaction
 
4254
0MPSExecute
 
4255
0MPSExecuteStatement
 
4256
0MPSGetAttributes
 
4257
0MPSGetCommandText
 
4258
0MPSGetCommandType
 
4259
0MPSGetDefaultOrder
 
4260
0MPSGetIndexDefs
 
4261
0MPSGetKeyFields
 
4262
0MPSGetParams
 
4263
0MPSGetQuoteChar
 
4264
0MPSGetTableName
 
4265
0MPSGetUpdateException
 
4266
0MPSInTransaction
 
4267
0MPSIsSQLBased
 
4268
0MPSIsSQLSupported
 
4269
0MPSReset
 
4270
0MPSSetCommandText
 
4271
0MPSSetParams
 
4272
0MPSStartTransaction
 
4273
0MPSUpdateRecord
 
4274
#fcl.db.TDataSet #rtl.Classes.TComponent
 
4275
1VFOpenAfterRead
 
4276
1VFActiveRecord
 
4277
1VFAfterCancel
 
4278
1VFAfterClose
 
4279
1VFAfterDelete
 
4280
1VFAfterEdit
 
4281
1VFAfterInsert
 
4282
1VFAfterOpen
 
4283
1VFAfterPost
 
4284
1VFAfterRefresh
 
4285
1VFAfterScroll
 
4286
1VFAutoCalcFields
 
4287
1VFBOF
 
4288
1VFBeforeCancel
 
4289
1VFBeforeClose
 
4290
1VFBeforeDelete
 
4291
1VFBeforeEdit
 
4292
1VFBeforeInsert
 
4293
1VFBeforeOpen
 
4294
1VFBeforePost
 
4295
1VFBeforeRefresh
 
4296
1VFBeforeScroll
 
4297
1VFBlobFieldCount
 
4298
1VFBlockReadSize
 
4299
1VFBookmarkSize
 
4300
1VFBuffers
 
4301
1VFBufferCount
 
4302
1VFCalcBuffer
 
4303
1VFCalcFieldsSize
 
4304
1VFConstraints
 
4305
1VFDisableControlsCount
 
4306
1VFDisableControlsState
 
4307
1VFCurrentRecord
 
4308
1VFDataSources
 
4309
1VFDefaultFields
 
4310
1VFEOF
 
4311
1VFEnableControlsEvent
 
4312
1VFFieldList
 
4313
1VFFieldDefs
 
4314
1VFFilterOptions
 
4315
1VFFilterText
 
4316
1VFFiltered
 
4317
1VFFound
 
4318
1VFInternalCalcFields
 
4319
1VFModified
 
4320
1VFOnCalcFields
 
4321
1VFOnDeleteError
 
4322
1VFOnEditError
 
4323
1VFOnFilterRecord
 
4324
1VFOnNewRecord
 
4325
1VFOnPostError
 
4326
1VFRecordCount
 
4327
1VFIsUniDirectional
 
4328
1VFState
 
4329
1VFInternalOpenComplete
 
4330
1MDoInsertAppend
 
4331
1MDoInternalOpen
 
4332
1MGetBuffer
 
4333
1MGetField
 
4334
1MRegisterDataSource
 
4335
1MRemoveField
 
4336
1MSetConstraints
 
4337
1MSetField
 
4338
1MShiftBuffersForward
 
4339
1MShiftBuffersBackward
 
4340
1MTryDoing
 
4341
1MGetActive
 
4342
1MUnRegisterDataSource
 
4343
1MUpdateFieldDefs
 
4344
1MSetBlockReadSize
 
4345
1MSetFieldDefs
 
4346
1MDoInsertAppendRecord
 
4347
2MRecalcBufListSize
 
4348
2MActivateBuffers
 
4349
2MBindFields
 
4350
2MBlockReadNext
 
4351
2MBookmarkAvailable
 
4352
2MCalculateFields
 
4353
2MCheckActive
 
4354
2MCheckInactive
 
4355
2MCheckBiDirectional
 
4356
2MLoaded
 
4357
2MClearBuffers
 
4358
2MClearCalcFields
 
4359
2MCloseBlob
 
4360
2MCloseCursor
 
4361
2MCreateFields
 
4362
2MDataEvent
 
4363
2MDestroyFields
 
4364
2MDoAfterCancel
 
4365
2MDoAfterClose
 
4366
2MDoAfterDelete
 
4367
2MDoAfterEdit
 
4368
2MDoAfterInsert
 
4369
2MDoAfterOpen
 
4370
2MDoAfterPost
 
4371
2MDoAfterScroll
 
4372
2MDoAfterRefresh
 
4373
2MDoBeforeCancel
 
4374
2MDoBeforeClose
 
4375
2MDoBeforeDelete
 
4376
2MDoBeforeEdit
 
4377
2MDoBeforeInsert
 
4378
2MDoBeforeOpen
 
4379
2MDoBeforePost
 
4380
2MDoBeforeScroll
 
4381
2MDoBeforeRefresh
 
4382
2MDoOnCalcFields
 
4383
2MDoOnNewRecord
 
4384
2MFieldByNumber
 
4385
2MFindRecord
 
4386
2MFreeFieldBuffers
 
4387
2MGetBookmarkStr
 
4388
2MGetCalcFields
 
4389
2MGetCanModify
 
4390
2MGetChildren
 
4391
2MGetFieldClass
 
4392
2MGetfieldCount
 
4393
2MGetFieldValues
 
4394
2MGetIsIndexField
 
4395
2MGetIndexDefs
 
4396
2MGetNextRecords
 
4397
2MGetNextRecord
 
4398
2MGetPriorRecords
 
4399
2MGetPriorRecord
 
4400
2MGetRecordCount
 
4401
2MGetRecNo
 
4402
2MInitFieldDefs
 
4403
2MInitFieldDefsFromfields
 
4404
2MInitRecord
 
4405
2MInternalCancel
 
4406
2MInternalEdit
 
4407
2MInternalInsert
 
4408
2MInternalRefresh
 
4409
2MOpenCursor
 
4410
2MOpenCursorcomplete
 
4411
2MRefreshInternalCalcFields
 
4412
2MRestoreState
 
4413
2MSetActive
 
4414
2MSetBookmarkStr
 
4415
2MSetBufListSize
 
4416
2MSetChildOrder
 
4417
2MSetCurrentRecord
 
4418
2MSetDefaultFields
 
4419
2MSetFiltered
 
4420
2MSetFilterOptions
 
4421
2MSetFilterText
 
4422
2MSetFieldValues
 
4423
2MSetFound
 
4424
2MSetModified
 
4425
2MSetName
 
4426
2MSetOnFilterRecord
 
4427
2MSetRecNo
 
4428
2MSetState
 
4429
2MSetTempState
 
4430
2MTempbuffer
 
4431
2MUpdateIndexDefs
 
4432
2PActiveRecord r
 
4433
2PCurrentRecord r
 
4434
2PBlobFieldCount r
 
4435
2PBookmarkSize rw
 
4436
2PBuffers r
 
4437
2PBufferCount r
 
4438
2PCalcBuffer r
 
4439
2PCalcFieldsSize r
 
4440
2PInternalCalcFields r
 
4441
2PConstraints rw
 
4442
2MAllocRecordBuffer
 
4443
2MFreeRecordBuffer
 
4444
2MGetBookmarkData
 
4445
2MGetBookmarkFlag
 
4446
2MGetDataSource
 
4447
2MGetRecordSize
 
4448
2MInternalAddRecord
 
4449
2MInternalDelete
 
4450
2MInternalFirst
 
4451
2MInternalGotoBookmark
 
4452
2MInternalHandleException
 
4453
2MInternalInitRecord
 
4454
2MInternalLast
 
4455
2MInternalPost
 
4456
2MInternalSetToRecord
 
4457
2MSetBookmarkFlag
 
4458
2MSetBookmarkData
 
4459
2MSetUniDirectional
 
4460
2MGetRecord
 
4461
2MInternalClose
 
4462
2MInternalOpen
 
4463
2MInternalInitFieldDefs
 
4464
2MIsCursorOpen
 
4465
2MPSEndTransaction
 
4466
2MPSExecute
 
4467
2MPSExecuteStatement
 
4468
2MPSGetAttributes
 
4469
2MPSGetCommandText
 
4470
2MPSGetCommandType
 
4471
2MPSGetDefaultOrder
 
4472
2MPSGetIndexDefs
 
4473
2MPSGetKeyFields
 
4474
2MPSGetParams
 
4475
2MPSGetQuoteChar
 
4476
2MPSGetTableName
 
4477
2MPSGetUpdateException
 
4478
2MPSInTransaction
 
4479
2MPSIsSQLBased
 
4480
2MPSIsSQLSupported
 
4481
2MPSReset
 
4482
2MPSSetCommandText
 
4483
2MPSSetParams
 
4484
2MPSStartTransaction
 
4485
2MPSUpdateRecord
 
4486
3MCreate
 
4487
3MDestroy
 
4488
3MActiveBuffer
 
4489
0MGetFieldData
 
4490
0MSetFieldData
 
4491
3MAppend
 
4492
3MAppendRecord
 
4493
3MBookmarkValid
 
4494
3MCancel
 
4495
3MCheckBrowseMode
 
4496
3MClearFields
 
4497
3MClose
 
4498
3MControlsDisabled
 
4499
3MCompareBookmarks
 
4500
3MCreateBlobStream
 
4501
3MCursorPosChanged
 
4502
3MDataConvert
 
4503
3MDelete
 
4504
3MDisableControls
 
4505
3MEdit
 
4506
3MEnableControls
 
4507
3MFieldByName
 
4508
3MFindField
 
4509
3MFindFirst
 
4510
3MFindLast
 
4511
3MFindNext
 
4512
3MFindPrior
 
4513
3MFirst
 
4514
3MFreeBookmark
 
4515
3MGetBookmark
 
4516
3MGetCurrentRecord
 
4517
3MGetFieldList
 
4518
3MGetFieldNames
 
4519
3MGotoBookmark
 
4520
3MInsert
 
4521
3MInsertRecord
 
4522
3MIsEmpty
 
4523
3MIsLinkedTo
 
4524
3MIsSequenced
 
4525
3MLast
 
4526
3MLocate
 
4527
3MLookup
 
4528
3MMoveBy
 
4529
3MNext
 
4530
3MOpen
 
4531
3MPost
 
4532
3MPrior
 
4533
3MRefresh
 
4534
3MResync
 
4535
3MSetFields
 
4536
3MTranslate
 
4537
3MUpdateCursorPos
 
4538
3MUpdateRecord
 
4539
3MUpdateStatus
 
4540
3PBlockReadSize rw
 
4541
3PBOF r
 
4542
3PBookmark rw
 
4543
3PCanModify r
 
4544
3PDataSource r
 
4545
3PDefaultFields r
 
4546
3PEOF r
 
4547
3PFieldCount r
 
4548
3PFieldDefs rw
 
4549
3PFound r
 
4550
3PModified r
 
4551
3PIsUniDirectional r
 
4552
3PRecordCount r
 
4553
3PRecNo rw
 
4554
3PRecordSize r
 
4555
3PState r
 
4556
3PFields r
 
4557
3PFieldValues rw
 
4558
3PFilter rw
 
4559
3PFiltered rw
 
4560
3PFilterOptions rw
 
4561
3PActive rw
 
4562
3PAutoCalcFields rw
 
4563
3PBeforeOpen rw
 
4564
3PAfterOpen rw
 
4565
3PBeforeClose rw
 
4566
3PAfterClose rw
 
4567
3PBeforeInsert rw
 
4568
3PAfterInsert rw
 
4569
3PBeforeEdit rw
 
4570
3PAfterEdit rw
 
4571
3PBeforePost rw
 
4572
3PAfterPost rw
 
4573
3PBeforeCancel rw
 
4574
3PAfterCancel rw
 
4575
3PBeforeDelete rw
 
4576
3PAfterDelete rw
 
4577
3PBeforeScroll rw
 
4578
3PAfterScroll rw
 
4579
3PBeforeRefresh rw
 
4580
3PAfterRefresh rw
 
4581
3POnCalcFields rw
 
4582
3POnDeleteError rw
 
4583
3POnEditError rw
 
4584
3POnFilterRecord rw
 
4585
3POnNewRecord rw
 
4586
3POnPostError rw
 
4587
#fcl.db.TDataLink #rtl.Classes.TPersistent
 
4588
1VFFirstRecord
 
4589
1VFBufferCount
 
4590
1VFActive
 
4591
1VFDataSourceFixed
 
4592
1VFEditing
 
4593
1VFReadOnly
 
4594
1VFUpdatingRecord
 
4595
1VFVisualControl
 
4596
1VFDataSource
 
4597
1MCalcFirstRecord
 
4598
1MCalcRange
 
4599
1MCheckActiveAndEditing
 
4600
1MGetDataset
 
4601
1MSetActive
 
4602
1MSetDataSource
 
4603
1MSetReadOnly
 
4604
2MActiveChanged
 
4605
2MCheckBrowseMode
 
4606
2MDataEvent
 
4607
2MDataSetChanged
 
4608
2MDataSetScrolled
 
4609
2MEditingChanged
 
4610
2MFocusControl
 
4611
2MGetActiveRecord
 
4612
2MGetBOF
 
4613
2MGetBufferCount
 
4614
2MGetEOF
 
4615
2MGetRecordCount
 
4616
2MLayoutChanged
 
4617
2MMoveBy
 
4618
2MRecordChanged
 
4619
2MSetActiveRecord
 
4620
2MSetBufferCount
 
4621
2MUpdateData
 
4622
2PVisualControl rw
 
4623
2PFirstRecord rw
 
4624
3MCreate
 
4625
3MDestroy
 
4626
3MEdit
 
4627
3MUpdateRecord
 
4628
3MExecuteAction
 
4629
3MUpdateAction
 
4630
3PActive r
 
4631
3PActiveRecord rw
 
4632
3PBOF r
 
4633
3PBufferCount rw
 
4634
3PDataSet r
 
4635
3PDataSource rw
 
4636
3PDataSourceFixed rw
 
4637
3PEditing r
 
4638
3PEof r
 
4639
3PReadOnly rw
 
4640
3PRecordCount r
 
4641
#fcl.db.TDetailDataLink #fcl.db.TDataLink
 
4642
2MGetDetailDataSet
 
4643
3PDetailDataSet r
 
4644
#fcl.db.TMasterDataLink #fcl.db.TDetailDataLink
 
4645
1VFDetailDataSet
 
4646
1VFFieldNames
 
4647
1VFFields
 
4648
1VFOnMasterChange
 
4649
1VFOnMasterDisable
 
4650
1MSetFieldNames
 
4651
2MActiveChanged
 
4652
2MCheckBrowseMode
 
4653
2MGetDetailDataSet
 
4654
2MLayoutChanged
 
4655
2MRecordChanged
 
4656
2MDoMasterDisable
 
4657
2MDoMasterChange
 
4658
3MCreate
 
4659
3MDestroy
 
4660
3PFieldNames rw
 
4661
3PFields r
 
4662
3POnMasterChange rw
 
4663
3POnMasterDisable rw
 
4664
#fcl.db.TDataSource #rtl.Classes.TComponent
 
4665
1VFDataSet
 
4666
1VFDataLinks
 
4667
1VFEnabled
 
4668
1VFAutoEdit
 
4669
1VFState
 
4670
1VFOnStateChange
 
4671
1VFOnDataChange
 
4672
1VFOnUpdateData
 
4673
1MDistributeEvent
 
4674
1MRegisterDataLink
 
4675
1MProcessEvent
 
4676
1MSetDataSet
 
4677
1MSetEnabled
 
4678
1MUnregisterDataLink
 
4679
2MDoDataChange
 
4680
2MDoStateChange
 
4681
2MDoUpdateData
 
4682
2PDataLinks r
 
4683
3MCreate
 
4684
3MDestroy
 
4685
3MEdit
 
4686
3MIsLinkedTo
 
4687
3PState r
 
4688
4PAutoEdit rw
 
4689
4PDataSet rw
 
4690
4PEnabled rw
 
4691
4POnStateChange rw
 
4692
4POnDataChange rw
 
4693
4POnUpdateData rw
 
4694
#fcl.db.TDBDataset #fcl.db.TDataSet
 
4695
1VFDatabase
 
4696
1VFTransaction
 
4697
2MSetDatabase
 
4698
2MSetTransaction
 
4699
2MCheckDatabase
 
4700
3Mdestroy
 
4701
3PDataBase rw
 
4702
3PTransaction rw
 
4703
#fcl.db.TDBTransaction #rtl.Classes.TComponent
 
4704
1VFActive
 
4705
1VFDatabase
 
4706
1VFDataSets
 
4707
1VFOpenAfterRead
 
4708
1MGetDataSetCount
 
4709
1MGetDataset
 
4710
1MRegisterDataset
 
4711
1MUnRegisterDataset
 
4712
1MRemoveDataSets
 
4713
1MSetActive
 
4714
2MSetDatabase
 
4715
2MCloseTrans
 
4716
2MopenTrans
 
4717
2MCheckDatabase
 
4718
2MCheckActive
 
4719
2MCheckInactive
 
4720
2MEndTransaction
 
4721
2MStartTransaction
 
4722
2MInternalHandleException
 
4723
2MLoaded
 
4724
3MCreate
 
4725
3Mdestroy
 
4726
3MCloseDataSets
 
4727
3PDataBase rw
 
4728
4PActive rw
 
4729
#fcl.db.TCustomConnection #rtl.Classes.TComponent
 
4730
1VFAfterConnect
 
4731
1VFAfterDisconnect
 
4732
1VFBeforeConnect
 
4733
1VFBeforeDisconnect
 
4734
1VFLoginPrompt
 
4735
1VFOnLogin
 
4736
1VFStreamedConnected
 
4737
1MSetAfterConnect
 
4738
1MSetAfterDisconnect
 
4739
1MSetBeforeConnect
 
4740
1MSetBeforeDisconnect
 
4741
2MDoConnect
 
4742
2MDoDisconnect
 
4743
2MGetConnected
 
4744
2MGetDataset
 
4745
2MGetDataSetCount
 
4746
2MInternalHandleException
 
4747
2MLoaded
 
4748
2MSetConnected
 
4749
2PStreamedconnected rw
 
4750
3MClose
 
4751
3MDestroy
 
4752
3MOpen
 
4753
3PDataSetCount r
 
4754
3PDataSets r
 
4755
4PConnected rw
 
4756
4PLoginPrompt rw
 
4757
4PAfterConnect rw
 
4758
4PAfterDisconnect rw
 
4759
4PBeforeConnect rw
 
4760
4PBeforeDisconnect rw
 
4761
4POnLogin rw
 
4762
#fcl.db.TDatabase #fcl.db.TCustomConnection
 
4763
1VFConnected
 
4764
1VFDataBaseName
 
4765
1VFDataSets
 
4766
1VFTransactions
 
4767
1VFDirectory
 
4768
1VFKeepConnection
 
4769
1VFParams
 
4770
1VFSQLBased
 
4771
1VFOpenAfterRead
 
4772
1MGetTransactionCount
 
4773
1MGetTransaction
 
4774
1MRegisterDataset
 
4775
1MRegisterTransaction
 
4776
1MUnRegisterDataset
 
4777
1MUnRegisterTransaction
 
4778
1MRemoveDataSets
 
4779
1MRemoveTransactions
 
4780
1MSetParams
 
4781
2MCheckConnected
 
4782
2MCheckDisConnected
 
4783
2MDoConnect
 
4784
2MDoDisconnect
 
4785
2MGetConnected
 
4786
2MGetDataset
 
4787
2MGetDataSetCount
 
4788
2MDoInternalConnect
 
4789
2MDoInternalDisConnect
 
4790
3MCreate
 
4791
3MDestroy
 
4792
3MCloseDataSets
 
4793
3MCloseTransactions
 
4794
3MStartTransaction
 
4795
3MEndTransaction
 
4796
3PTransactionCount r
 
4797
3PTransactions r
 
4798
3PDirectory rw
 
4799
3PIsSQLBased r
 
4800
4PConnected rw
 
4801
4PDatabaseName rw
 
4802
4PKeepConnection rw
 
4803
4PParams rw
 
4804
#fcl.db.TMasterParamsDataLink #fcl.db.TMasterDataLink
 
4805
1VFParams
 
4806
1MSetParams
 
4807
2MDoMasterDisable
 
4808
2MDoMasterChange
 
4809
3MCreate
 
4810
3MRefreshParamNames
 
4811
3MCopyParamsFromMaster
 
4812
3PParams rw
 
4813
#fcl.IBConnection.EIBDatabaseError #fcl.db.EDatabaseError
 
4814
3VGDSErrorCode
 
4815
#fcl.IBConnection.TIBCursor TSQLCursor
 
4816
2VStatus
 
4817
2VStatement
 
4818
2VSQLDA
 
4819
2Vin_SQLDA
 
4820
2VParamBinding
 
4821
2VFieldBinding
 
4822
#fcl.IBConnection.TIBTrans TSQLHandle
 
4823
2VTransactionHandle
 
4824
2VTPB
 
4825
2VStatus
 
4826
#fcl.IBConnection.TIBConnection TSQLConnection
 
4827
1VFSQLDatabaseHandle
 
4828
1VFStatus
 
4829
1VFDialect
 
4830
1VFDBDialect
 
4831
1VFBLobSegmentSize
 
4832
1MConnectFB
 
4833
1MGetDialect
 
4834
1MAllocSQLDA
 
4835
1MTranslateFldType
 
4836
1MGetDateTime
 
4837
1MSetDateTime
 
4838
1MGetFloat
 
4839
1MSetFloat
 
4840
1MCheckError
 
4841
1MSetParameters
 
4842
1MFreeSQLDABuffer
 
4843
1MIsDialectStored
 
4844
2MDoConnect
 
4845
2MDoInternalConnect
 
4846
2MDoInternalDisconnect
 
4847
2MGetHandle
 
4848
2MAllocateCursorHandle
 
4849
2MDeAllocateCursorHandle
 
4850
2MAllocateTransactionHandle
 
4851
2MPrepareStatement
 
4852
2MUnPrepareStatement
 
4853
2MFreeFldBuffers
 
4854
2MExecute
 
4855
2MAddFieldDefs
 
4856
2MFetch
 
4857
2MLoadField
 
4858
2MGetBlobSize
 
4859
2MGetTransactionHandle
 
4860
2MCommit
 
4861
2MRollBack
 
4862
2MStartdbTransaction
 
4863
2MCommitRetaining
 
4864
2MRollBackRetaining
 
4865
2MUpdateIndexDefs
 
4866
2MGetSchemaInfoSQL
 
4867
2MLoadBlobIntoBuffer
 
4868
2MRowsAffected
 
4869
3MCreate
 
4870
3MCreateDB
 
4871
3MDropDB
 
4872
3PBlobSegmentSize rw
 
4873
3MGetDBDialect
 
4874
4PDatabaseName
 
4875
4PDialect rws
 
4876
4PKeepConnection
 
4877
4PLoginPrompt
 
4878
4PParams
 
4879
4POnLogin
 
4880
#fcl.IBConnection.TIBConnectionDef TConnectionDef
 
4881
0MTypeName
 
4882
0MConnectionClass
 
4883
0MDescription
 
4884
#fcl.mssqlconn.TMSSQLConnection TSQLConnection
 
4885
1VFDBLogin
 
4886
1VFDBProc
 
4887
1VFtds
 
4888
1VFstatus
 
4889
1MCheckError
 
4890
1MDBExecute
 
4891
1MTranslateFldType
 
4892
1MClientCharset
 
4893
1MAutoCommit
 
4894
1MIsSybase
 
4895
2MGetHandle
 
4896
2MGetAsSQLText
 
4897
2MDoInternalConnect
 
4898
2MDoInternalDisconnect
 
4899
2MAllocateCursorHandle
 
4900
2MDeAllocateCursorHandle
 
4901
2MAllocateTransactionHandle
 
4902
2MStrToStatementType
 
4903
2MPrepareStatement
 
4904
2MUnPrepareStatement
 
4905
2MGetTransactionHandle
 
4906
2MStartDBTransaction
 
4907
2MCommit
 
4908
2MRollback
 
4909
2MCommitRetaining
 
4910
2MRollbackRetaining
 
4911
2MExecute
 
4912
2MRowsAffected
 
4913
2MAddFieldDefs
 
4914
2MFetch
 
4915
2MLoadField
 
4916
2MLoadBlobIntoBuffer
 
4917
2MFreeFldBuffers
 
4918
2MUpdateIndexDefs
 
4919
2MGetSchemaInfoSQL
 
4920
3MCreate
 
4921
4PPassword
 
4922
4PTransaction
 
4923
4PUserName
 
4924
4PCharSet
 
4925
4PHostName
 
4926
4PConnected
 
4927
4PRole
 
4928
4PDatabaseName
 
4929
4PKeepConnection
 
4930
4PLoginPrompt
 
4931
4PParams
 
4932
4POnLogin
 
4933
#fcl.mssqlconn.TSybaseConnection #fcl.mssqlconn.TMSSQLConnection
 
4934
3MCreate
 
4935
#fcl.mssqlconn.EMSSQLDatabaseError #fcl.db.EDatabaseError
 
4936
3VDBErrorCode
 
4937
#fcl.mssqlconn.TMSSQLConnectionDef TConnectionDef
 
4938
0MTypeName
 
4939
0MConnectionClass
 
4940
0MDescription
 
4941
#fcl.mssqlconn.TSybaseConnectionDef TConnectionDef
 
4942
0MTypeName
 
4943
0MConnectionClass
 
4944
0MDescription