Documentation rework, removes aprox. 600 occurences of [?] and other non-sense from the documentation

git-svn-id: trunk@33617 -
This commit is contained in:
sekelsenmat 2011-11-18 17:16:46 +00:00
parent 0bf4f5b688
commit 31e6b3ee9a
14 changed files with 661 additions and 663 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -111,11 +111,11 @@
</element>
<!-- enumeration value Visibility: default -->
<element name="TRawImageBitOrder.riboBitsInOrder">
<short>Bit 0 represents first pixel[?]</short>
<short>Bit 0 represents first pixel</short>
</element>
<!-- enumeration value Visibility: default -->
<element name="TRawImageBitOrder.riboReversedBits">
<short>Bit 0 represents highest pixel[?]</short>
<short>Bit 0 represents highest pixel</short>
</element>
<!-- enumeration type Visibility: default -->
<element name="TRawImageLineEnd">
@ -160,7 +160,7 @@
<!-- record type Visibility: default -->
<element name="TRawImageDescription">
<short>Descriptor object for the image format of devices and raw (uncompressed) image data</short>
<descr>This effectivley is a record with some attached methods. More related procedures exist outside the object. [where?]
<descr>This effectivley is a record with some attached methods. More related procedures exist outside the object.
The object describes the presence and exact storage of the RGBA image and mask pixels, of a device or image. The color information is stored in aligned scanlines.
@ -187,9 +187,7 @@ xxxBitsPerPixel and xxxPrecisionMask applies to color data. For masked images, t
<!-- variable Visibility: default -->
<element name="TRawImageDescription.Depth">
<short>Number of used bits per pixel</short>
<descr>The color and pixel storage can be subject to alignment, so that the logical color Depth can be less than the physical BitsPerPixel.
[What if a palette is used?]</descr>
<descr>The color and pixel storage can be subject to alignment, so that the logical color Depth can be less than the physical BitsPerPixel.</descr>
<seealso/>
</element>
<!-- variable Visibility: default -->
@ -768,14 +766,12 @@ This object currently is subject to refactoring, don't use it in application cod
</element>
<element name="TRawImageDescription.MaskBitsPerPixel">
<short>Bits per mask pixel, 0 when no mask is present.</short>
<descr>A pixel Mask (currently) has a logical depth of 1 bit per pixel, but a pixel can occupy an entire byte[?]
As opposed to the Alpha (transparency) channel, a Mask is stored in its own array. [of bits or bytes?]
<descr>A pixel Mask (currently) has a logical depth of 1 bit per pixel, but a pixel can occupy an entire byte.
As opposed to the Alpha (transparency) channel, a Mask is stored in its own array.
A Mask value of 1 means that the pixel is masked (transparent); a value of 0 means the pixel value is shown (opaque).</descr>
</element>
<element name="TRawImageDescription.MaskShift">
<short>The bit offset of the mask bit [if stored in a byte?]</short>
<short>The bit offset of the mask bit</short>
</element>
<element name="TRawImageDescription.MaskLineEnd">
<short>Alignment of Mask lines.</short>
@ -784,22 +780,25 @@ A Mask value of 1 means that the pixel is masked (transparent); a value of 0 mea
<short>Bit order of the Mask.</short>
</element>
<element name="TRawImageDescription.PaletteBitsPerIndex">
<short>Bits per palette index, stored in the pixel data[?]</short>
<descr>When a palette is used, [I suppose that] the color description fields apply to the palette colors, while pixel data contains the palette index. Then Depth applies to the size of the palette colors, and the pixel data is described by PaletteBitsPerIndex and PaletteShift[?]</descr>
<short>Bits per palette index, stored in the pixel data</short>
<descr>When a palette is used, the color description fields apply to the
palette colors, while pixel data contains the palette index. Then Depth
applies to the size of the palette colors, and the pixel data is described
by PaletteBitsPerIndex and PaletteShift</descr>
<errors>[palettes are not yet implemented]</errors>
</element>
<element name="TRawImageDescription.PaletteShift">
<short>[useless by definition]</short>
<short></short>
</element>
<element name="TRawImageDescription.PaletteLineEnd">
<short>Alignment of [what?]</short>
<descr>The wording suggests that the PaletteXYZ fields apply to the pixel data (palette indices), not to the palette itself. A palette is not organized in lines...</descr>
<short></short>
<descr></descr>
</element>
<element name="TRawImageDescription.PaletteBitOrder">
<short>Bit order of the palette indices[?]</short>
<short>Bit order of the palette indices</short>
</element>
<element name="TRawImageDescription.PaletteByteOrder">
<short>Byte order of the palette indices[?]</short>
<short>Byte order of the palette indices</short>
</element>
<element name="TRawImageDescription.Init">
<short>Initialize the image descriptor to all zeroes.</short>
@ -810,7 +809,6 @@ A Mask value of 1 means that the pixel is masked (transparent); a value of 0 mea
<descr>
<p>Init_BPP24_B8G8R8_BIO_TTB - initiator for specified format</p>
<pre>{ pf24bit:
Format=ricfRGBA HasPalette=false Depth=24 PaletteColorCount=0
BitOrder=riboBitsInOrder ByteOrder=DefaultByteOrder
LineOrder=riloTopToBottom
@ -1016,7 +1014,7 @@ A Mask value of 1 means that the pixel is masked (transparent); a value of 0 mea
<short>Scanlines start at a 128 bit boundary.</short>
</element>
<element name="TRawImageQueryFlag">
<short>Image formats supported by a device, or present in image data[?]</short>
<short>Image formats supported by a device, or present in image data</short>
</element>
<element name="RawImage_ReadBits">
<short>Read color bits.</short>

View File

@ -12682,8 +12682,7 @@ The range is defined based on optional <var>AUseSelection</var> parameter which
<li>
<b>OnPrepareCanvas.</b> If the programmer wrote an event handler for the
<var>OnPrepareCanvas</var> event, it is called at this point. This event can be used for doing simple customization like changing a cell's background color, font's properties like color, fontface and style, Text layout like different combinations of left, center, top, bottom, right alignment, etc. Any change made to the canvas for a particular cell in this event would be lost, because the next cell drawing will reset canvas again to a default state. So it's safe doing changes only for a particular cell or cells and forget about it for the rest. Using this event sometimes helps to avoid using the
<var>OnDrawCell</var> grid event, where users would be forced to duplicate the grid's drawing code.
[Todo: samples of what can be made and what to leave for OnDrawCell?]</li>
<var>OnDrawCell</var> grid event, where users would be forced to duplicate the grid's drawing code.</li>
<li>
<b>OnDrawCell.</b> Next, if no handler for the <var>OnDrawCell</var> event was specified, the grid calls the
<var>DefaultDrawCell</var> method which simply paints the cell background using the current canvas brush color and style.

View File

@ -53,9 +53,8 @@
<!-- enumeration type Visibility: default -->
<element name="TDrawingStyle">
<short>Defines transparency and blending of rendered images.</short>
<descr>[What's "blending"?]
Blending means that the BlendColor is applied to the image foreground,
to a certain degree (dithering). [right?]
<descr>Blending means that the Color is merged with the previous contents of
the destination area by a degree defined by an alpha value.
</descr>
<seealso/>
</element>
@ -74,8 +73,7 @@
<!-- enumeration type Visibility: default -->
<element name="TImageType">
<short>Indicates whether a mask shall be used in rendering an image.</short>
<descr>[What's the effect of applying a mask?]
The mask specifies the transparent part of the image [right?]</descr>
<descr>The mask specifies the transparent part of the image</descr>
<seealso/>
</element>
<!-- enumeration value Visibility: default -->
@ -98,7 +96,6 @@
This allows to insert e.g. other (compatible) ImageLists, or bitmaps for multiple states of essentially the same image (button pressed, released and disabled).
</p><p>
Transparency is implemented in the alpha channel of the raw 32 bit RGBA imagedata array - but not all platforms support such an alpha channel.
[What exactly does this mean to the user?]
</p><p>
The painting of an image from the list is handled by the widgetset, no bitmap or icon component is involved.
The widgetset can use a different internal organization of the data, optimized for immediate painting of an image.
@ -108,11 +105,8 @@
</p><p>
Please note also that inserting or moving images will affect the index of all following images,
what can cause trouble with index constants. In such cases a bitmap collection may better fit your needs.
</p><p>
[What about Mask, HotSpot and ShareImages?]
</p>
<remark>Windows ImgageLists can contain a list of monochrome mask bitmaps, present when Masked=True.
[Does the LCL support this feature, or is only the TransparentColor used to make images transparent?]
</remark>
</descr>
<errors>
@ -182,7 +176,7 @@
<short>Height of all images in pixels.</short>
</element>
<element name="TCustomImageList.InternalInsert.ARawImage">
<short>[?]</short>
<short></short>
</element>
<!-- procedure Visibility: private -->
<element name="TCustomImageList.InternalMove">
@ -201,11 +195,11 @@
<short>the new index of the image</short>
</element>
<element name="TCustomImageList.InternalMove.AIgnoreCurrent">
<short>[?]</short>
<short></short>
</element>
<!-- procedure Visibility: private -->
<element name="TCustomImageList.InternalReplace">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -530,13 +524,13 @@
<short>If False, draw the image disabled (dithered).</short>
</element>
<element name="TCustomImageList.Draw.ADrawEffect">
<short>[?]</short>
<short></short>
</element>
<element name="TCustomImageList.Draw.ADrawingStyle">
<short>[?]</short>
<short></short>
</element>
<element name="TCustomImageList.Draw.AImageType">
<short>[?]</short>
<short></short>
</element>
<!-- procedure Visibility: public -->
<element name="TCustomImageList.GetBitmap">
@ -727,7 +721,6 @@
<p>BkColor is intended to speed up drawing of transparent images,
on a background of known color (=BkColor). In this case the image can be drawn opaque,
eliminating the need for really masking out and merging with existing background.
<br/>[does this really apply? depending on the widgetset?]
</p>
</descr>
<seealso/>
@ -771,7 +764,7 @@
<element name="TCustomImageList.Masked">
<short>
True when mask images are stored with every image (unused!).</short>
<descr>This property exists only for Delphi compatibility[?]</descr>
<descr>This property exists only for Delphi compatibility</descr>
<seealso/>
</element>
<!-- property Visibility: public -->
@ -779,7 +772,7 @@
<short>
True when this image list is shared. Unused!</short>
<descr>This property exists only for Delphi compatibility.
True means that the imagelist <b>widget</b> is freed together with the ImageList[?]
True means that the imagelist <b>widget</b> is freed together with the ImageList
</descr>
<seealso/>
</element>
@ -787,7 +780,7 @@
<element name="TCustomImageList.ImageType">
<short>
Unused!</short>
<descr>This property exists only for Delphi compatibility[?]</descr>
<descr>This property exists only for Delphi compatibility</descr>
<seealso/>
</element>
<element name="TCustomImageList.FillDescription">
@ -799,7 +792,7 @@
</element>
<!-- procedure Visibility: public -->
<element name="TCustomImageList.GetFullBitmap">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -874,16 +867,16 @@
Draws an image stretched to ARect.</short>
</element>
<element name="TCustomImageList.StretchDraw.Canvas">
<short>[?]</short>
<short></short>
</element>
<element name="TCustomImageList.StretchDraw.Index">
<short>[?]</short>
<short></short>
</element>
<element name="TCustomImageList.StretchDraw.ARect">
<short>[?]</short>
<short></short>
</element>
<element name="TCustomImageList.StretchDraw.Enabled">
<short>[?]</short>
<short></short>
</element>
<element name="TCustomImageList.Equals">
<short>Check for equivalence with another ImageList</short>

View File

@ -40,7 +40,7 @@
</element>
<!-- "type" alias type Visibility: default -->
<element name="PEventHandler">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -48,7 +48,7 @@
</element>
<!-- "type" alias type Visibility: default -->
<element name="PProcessEventHandler">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -56,7 +56,7 @@
</element>
<!-- "type" alias type Visibility: default -->
<element name="PPipeEventHandler">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -64,7 +64,7 @@
</element>
<!-- "type" alias type Visibility: default -->
<element name="PSocketEventHandler">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -79,14 +79,14 @@
</seealso>
</element>
<element name="TChildExitReason.cerExit">
<short>Normal exit[?]</short>
<short>Normal exit</short>
</element>
<element name="TChildExitReason.cerSignal">
<short>Killed[?]</short>
<short>Killed</short>
</element>
<!-- enumeration type Visibility: default -->
<element name="TPipeReason">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -105,7 +105,7 @@
<element name="TPipeReasons" link="TPipeReason"/>
<!-- procedure type Visibility: default -->
<element name="TApplicationMainLoop">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -113,7 +113,7 @@
</element>
<!-- procedure type Visibility: default -->
<element name="TWaitHandleEvent">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -127,7 +127,7 @@
</element>
<!-- procedure type Visibility: default -->
<element name="TChildExitEvent">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -144,7 +144,7 @@
</element>
<!-- procedure type Visibility: default -->
<element name="TPipeEvent">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -158,7 +158,7 @@
</element>
<!-- procedure type Visibility: default -->
<element name="TSocketEvent">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -237,7 +237,7 @@
<short>Supports drawing outside OnPaint event of an control.</short>
</element>
<element name="TLCLCapability.lcNeedMininimizeAppWithMainForm">
<short>When main form is minimized, then minimize also app [all forms?].
<short>When main form is minimized, then minimize also app.
</short>
</element>
<element name="TLCLCapability.lcApplicationTitle">
@ -256,7 +256,7 @@
<short>Can drag-dock forms from the title bar.</short>
</element>
<element name="TLCLCapability.lcAntialiasingEnabledByDefault">
<short>Is amDontCare = amOn for the widgetset.[?]
<short>Is amDontCare = amOn for the widgetset.
</short>
</element>
<element name="TLCLCapability.lcLMHelpSupport">
@ -460,7 +460,7 @@
</element>
<!-- procedure type Visibility: default -->
<element name="TWSTimerProc">
<short>Type of a timer callback procedure[?]
<short>Type of a timer callback procedure
</short>
<descr>
</descr>
@ -484,7 +484,7 @@
<element name="TWidgetSet.FThemeServices" link="TWidgetSet.ThemeServices"/>
<!-- procedure Visibility: protected -->
<element name="TWidgetSet.PassCmdLineOptions">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -542,7 +542,7 @@
</element>
<!-- procedure Visibility: public -->
<element name="TWidgetSet.AppInit">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -585,14 +585,14 @@
</element>
<!-- procedure Visibility: public -->
<element name="TWidgetSet.AppTerminate">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
</element>
<!-- procedure Visibility: public -->
<element name="TWidgetSet.AppMinimize">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -609,7 +609,7 @@
</element>
<!-- procedure Visibility: public -->
<element name="TWidgetSet.AppBringToFront">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -758,7 +758,7 @@
</element>
<!-- function Visibility: public -->
<element name="TWidgetSet.DCGetPixel">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -777,7 +777,7 @@
</element>
<!-- procedure Visibility: public -->
<element name="TWidgetSet.DCSetPixel">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -796,7 +796,7 @@
</element>
<!-- procedure Visibility: public -->
<element name="TWidgetSet.DCRedraw">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -822,7 +822,7 @@
</element>
<!-- procedure Visibility: public -->
<element name="TWidgetSet.SetDesigning">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -870,7 +870,7 @@
</element>
<!-- function Visibility: public -->
<element name="TWidgetSet.CreateTimer">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -886,7 +886,7 @@
</element>
<!-- function Visibility: public -->
<element name="TWidgetSet.DestroyTimer">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -907,7 +907,7 @@
</element>
<!-- function Visibility: public -->
<element name="TWidgetSet.Arc">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>

View File

@ -97,7 +97,7 @@
<element name="TLCLComponent.DecLCLRefCount" link="TLCLComponent.LCLRefCount"/>
<element name="TLCLComponent.LCLRefCount">
<short>The number of references to this component.</short>
<descr>[Which are the possible owners of such references?]
<descr>
</descr>
</element>
<!-- object Visibility: default -->
@ -109,12 +109,9 @@
The widget is created by the LCL control whenever required,
and its reference is stored in FReferencePtr.
This reference is for internal use by the LCL control, not by application code.
</p><p>
This reference is [can be?] different from the OS/window manager specific window Handle.
</p><p>
Applications only can send messages to a windowed control,
using its window Handle.
</p>
<p>This reference is different from the OS/window manager specific window Handle.</p>
<p>Applications only can send messages to a windowed control, using its window Handle.</p>
</descr>
<seealso>
<link id="TLCLReferenceComponent.ReferenceNeeded"/>
@ -170,7 +167,7 @@
</element>
<!-- function Visibility: protected -->
<element name="TLCLReferenceComponent.GetReferenceHandle">
<short>Override this method to return the Handle from the reference [what is Handle?]
<short>Override this method to return the Handle from the reference
</short>
</element>
<element name="TLCLReferenceComponent.GetReferenceHandle.Result">
@ -211,7 +208,7 @@
<element name="TLCLReferenceComponent.Handle">
<short>Get the Handle of this component.</short>
<descr>The Handle is sort of pointer or reference, allocated by the operating system or widgetset to this component.
A window handle can be used for sending messages to the component.[?]</descr>
A window handle can be used for sending messages to the component.</descr>
</element>
<element name="TLCLReferenceComponent.HandleAllocated" link="TLCLReferenceComponent.ReferenceAllocated"/>
<element name="TLCLReferenceComponent.ReferenceAllocated">

View File

@ -76,17 +76,13 @@
<element name="Arc">
<short>Draws an elliptical curve.</short>
<descr>
<p>Use Arc to draw an elliptically curved line with the current Pen.</p>
<p>
Use Arc to draw an elliptically curved line with the current Pen.
</p><p>
[This description deserves an update!?]
</p><p>
The angles angle1 and angle2 are 1/16th of a degree. For example, a full
circle equals 5760 (16*360). Positive values of Angle and AngleLength mean
counter-clockwise while negative values mean clockwise direction.
</p><p>
Zero degrees is at the 3'o clock position.
</p>
<p>Zero degrees is at the 3'o clock position.</p>
</descr>
<errors/>
<seealso/>
@ -117,10 +113,22 @@
</element>
<!-- function Visibility: default -->
<element name="AngleChord">
<short>[?]</short>
<descr/>
<short>Draws a Chord described by two angles</short>
<descr><p>AngleChord is a Lazarus addition, similar to the Windows API Chord,
but which uses angles to control the location of the chord inside the ellipse
instead of two points like the Windows API Chord.</p>
<p>A Chord is a section of an ellipse between the two angles from the parameters
angle1 and angle2. This ellipse segment is closed by a direct line conecting its two
extremities. This way to conect the extremities is what differentias a Chord from a
Pie, because the Pie conects each extremity to the center of the ellipse.</p>
<p>The curve part of the chord is defined by the ellipse which fits in the
bounding rectangle specified by the coordinates x1, y1, x2 and y2.<p/></descr>
<errors/>
<seealso/>
<seealso>
<link id="#lcl.LCLIntf.Pie">LCLIntf.Pie</link>
<link id="#lcl.Graphics.TCanvas.Chord">Graphics.TCanvas.Chord</link>
<link id="#lcl.Graphics.TCanvas.Pie">Graphics.TCanvas.Pie</link>
</seealso>
</element>
<element name="AngleChord.Result">
<short/>
@ -148,7 +156,7 @@
</element>
<!-- function Visibility: default -->
<element name="BeginPaint">
<short>Start painting in a window[?]</short>
<short>Start painting in a window</short>
<descr/>
<errors/>
<seealso/>
@ -164,8 +172,38 @@
</element>
<!-- function Visibility: default -->
<element name="BitBlt">
<short>[?]</short>
<descr/>
<short>Copies a section of a Canvas to another one, performing a Rop operation</short>
<descr><p>This routine implements the equivalent Windows GDI API of the same name in
all platforms supported by Lazarus. It copies a section of a Canvas to another one,
without any stretching. It alloes to select the kind of operation which should be
performed to draw the pixels into the destination in the parameter Rop. Allowed
operations go from simply copying the pixels without change to inverting them and
also to executing logical operations involving the source pixels and the previously
existing pixels in the destination Canvas.</p>
<p>For normal usage one should only use SRCOPY in the ROP parameter.
One should be careful when using Rop values other then SRCCOPY because they might
not be supported in all widgetsets. The possible values for ROP are:</p>
<ul>
<li>BLACKNESS - Fills the destination rectangle with black</li>
<li>CAPTUREBLT - Includes windows which are on top of the specified Canvas while
doing the capture. This option is not recommended and it is very hard to implement it in all supported platforms.</li>
<li>DSTINVERT - Inverts the colors of the destination area</li>
<li>MERGECOPY -</li>
<li>MERGEPAINT -</li>
<li>NOMIRRORBITMAP -</li>
<li>NOTSRCCOPY -</li>
<li>NOTSRCERASE -</li>
<li>PATCOPY -</li>
<li>PATINVERT -</li>
<li>PATPAINT -</li>
<li>SRCAND -</li>
<li>SRCCOPY -</li>
<li>SRCERASE -</li>
<li>SRCINVERT -</li>
<li>SRCPAINT - Combines the colors of the source and the destination using the operator OR in each pixel</li>
<li>WHITENESS - Fills the destination rectangle with white</li>
</ul>
</descr>
<errors/>
<seealso/>
</element>

View File

@ -208,7 +208,7 @@
</element>
<!-- class Visibility: default -->
<element name="TDebugLCLItemInfo">
<short>A node in TDebugLCLItems, holding information about a heap[?] object.
<short>A node in TDebugLCLItems, holding information about a heap object.
</short>
<descr>
</descr>
@ -236,7 +236,7 @@
</element>
<!-- variable Visibility: public -->
<element name="TDebugLCLItemInfo.Info">
<short>A descriptive string[?]
<short>A descriptive string
</short>
<descr>
</descr>
@ -245,7 +245,7 @@
</element>
<!-- variable Visibility: public -->
<element name="TDebugLCLItemInfo.CreationStack">
<short>Stack trace at creation of the object[?]
<short>Stack trace at creation of the object
</short>
<descr>
</descr>
@ -254,7 +254,7 @@
</element>
<!-- variable Visibility: public -->
<element name="TDebugLCLItemInfo.DestructionStack">
<short>Stack trace at destruction of the object[?]
<short>Stack trace at destruction of the object
</short>
<descr>
</descr>
@ -465,7 +465,7 @@
<element name="PLineInfoCacheItem" link="TLineInfoCacheItem"/>
<!-- function Visibility: default -->
<element name="CompareDebugLCLItemInfos">
<short>Compare function for the TDebugLCLItems AVL tree[?]
<short>Compare function for the TDebugLCLItems AVL tree
</short>
<descr>Compares the Item addresses.
</descr>
@ -578,7 +578,7 @@
</element>
<!-- function Visibility: default -->
<element name="GetEnumValueDef">
<short>Finds an enum member by name[?]
<short>Finds an enum member by name
</short>
<descr>
</descr>
@ -588,7 +588,7 @@
</seealso>
</element>
<element name="GetEnumValueDef.Result">
<short>The member ordinal[?]</short>
<short>The member ordinal</short>
</element>
<element name="GetEnumValueDef.TypeInfo">
<short>The enum TypeInfo.</short>
@ -601,7 +601,7 @@
</element>
<!-- function Visibility: default -->
<element name="ShortCutToText">
<short>Returns the textual representation of an shortcut[?]
<short>Returns the textual representation of an shortcut
</short>
<descr/>
<errors/>
@ -615,7 +615,7 @@
</element>
<!-- function Visibility: default -->
<element name="TextToShortCut">
<short>Converts the textual representation of an shortcut into an shortcut[?]
<short>Converts the textual representation of an shortcut into an shortcut
</short>
<descr/>
<errors/>
@ -648,11 +648,11 @@
<short>The list index where the search should start.</short>
</element>
<element name="GetCompleteText.bCaseSensitive">
<short>True means case-sensitive comparison[?]
<short>True means case-sensitive comparison
</short>
</element>
<element name="GetCompleteText.bSearchAscending">
<short>True means search ascending from iSelStart[?]
<short>True means search ascending from iSelStart
</short>
</element>
<element name="GetCompleteText.slTextList">
@ -661,7 +661,7 @@
</element>
<!-- function Visibility: default -->
<element name="IsEditableTextKey">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -677,7 +677,7 @@
</element>
<!-- function type Visibility: default -->
<element name="TSendApplicationMessageFunction">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
@ -695,7 +695,7 @@
</element>
<!-- procedure type Visibility: default -->
<element name="TOwnerFormDesignerModifiedProc">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
@ -704,19 +704,19 @@
</element>
<!-- variable Visibility: default -->
<element name="SendApplicationMessageFunction">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
<!-- variable Visibility: default -->
<element name="OwnerFormDesignerModifiedProc">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
<!-- function Visibility: default -->
<element name="SendApplicationMessage">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -735,7 +735,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="OwnerFormDesignerModified">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -755,7 +755,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="RegisterInterfaceInitializationHandler">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -778,7 +778,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="RegisterInterfaceFinalizationHandler">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -907,7 +907,7 @@
</element>
<!-- function Visibility: default -->
<element name="BreakString">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
@ -1037,7 +1037,7 @@
<element name="RoundToInt">
<short>Returns the rounded value as an Integer.</short>
<descr/>
<errors>[What if the result exceeds the Integer range?]
<errors>
</errors>
<seealso/>
</element>
@ -1051,7 +1051,7 @@
<element name="RoundToCardinal">
<short>Returns the rounded value as an Cardinal.</short>
<descr/>
<errors>[What if the result exceeds the Cardinal range?]
<errors>
</errors>
<seealso/>
</element>
@ -1065,7 +1065,7 @@
<element name="TruncToInt">
<short>Returns the truncated value as an Integer.</short>
<descr/>
<errors>[What if the result exceeds the Integer range?]
<errors>
</errors>
<seealso/>
</element>
@ -1079,7 +1079,7 @@
<element name="TruncToCardinal">
<short>Returns the rounded value as an Cardinal.</short>
<descr/>
<errors>[What if the result exceeds the Cardinal range?]
<errors>
</errors>
<seealso/>
</element>
@ -1117,7 +1117,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="RaiseAndCatchException">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1127,7 +1127,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="DumpExceptionBackTrace">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1137,7 +1137,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="DumpStack">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1147,7 +1147,7 @@
</element>
<!-- function Visibility: default -->
<element name="GetStackTrace">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1163,7 +1163,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="GetStackTracePointers">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1176,7 +1176,7 @@
</element>
<!-- function Visibility: default -->
<element name="StackTraceAsString">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1195,7 +1195,7 @@
</element>
<!-- function Visibility: default -->
<element name="GetLineInfo">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1214,7 +1214,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="DebugLn">
<short>Writes a number of strings (heavily overloaded) to the debug output[?]</short>
<short>Writes a number of strings (heavily overloaded) to the debug output</short>
<errors/>
<seealso/>
</element>
@ -1275,7 +1275,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="DebugLnEnter">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1309,7 +1309,7 @@
<element name="DebugLnEnter.s18"/>
<!-- procedure Visibility: default -->
<element name="DebugLnExit">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1360,16 +1360,16 @@
</element>
<!-- procedure Visibility: default -->
<element name="DbgOut">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso/>
</element>
<element name="DbgOut.s">
<short>[?]</short>
<short></short>
</element>
<element name="DbgOut.Args">
<short>[?]</short>
<short></short>
</element>
<element name="DbgOut.s1"/>
<element name="DbgOut.s2"/>
@ -1398,7 +1398,7 @@
</li>
</ul>
</descr>
<errors>""[?]
<errors>""
</errors>
<seealso/>
</element>
@ -1406,58 +1406,58 @@
<short/>
</element>
<element name="DbgS.s">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.q">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.MaxDecimals">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.m">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.c">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.i">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.r">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.p">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.e">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.b">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.Shift">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.i1">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.i2">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.i3">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.i4">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.ASize">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.ATM">
<short>[?]</short>
<short></short>
</element>
<element name="DbgS.AScrollInfo">
<short>[?]</short>
<short></short>
</element>
<!-- function Visibility: default -->
<element name="DbgSName">
@ -1622,7 +1622,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="DbgOutThreadLog">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1635,7 +1635,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="DebuglnThreadLog">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1647,11 +1647,11 @@
<short></short>
</element>
<element name="DebuglnThreadLog.Args">
<short>[?]</short>
<short></short>
</element>
<!-- procedure Visibility: default -->
<element name="DbgSaveData">
<short>Writes data into an file[?]</short>
<short>Writes data into an file</short>
<descr>
</descr>
<errors>
@ -1670,7 +1670,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="DbgAppendToFile">
<short>Appends a line to the given file[?]</short>
<short>Appends a line to the given file</short>
<descr>
</descr>
<errors>
@ -1686,7 +1686,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="DbgAppendToFileWithoutLn">
<short>Appends (preformatted) text to an file[?]</short>
<short>Appends (preformatted) text to an file</short>
<descr>
</descr>
<errors>
@ -1702,7 +1702,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="CloseDebugOutput">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1712,7 +1712,7 @@
</element>
<!-- function Visibility: default -->
<element name="StripLN">
<short>Strips everything after (and including) an CR or LF.[???]
<short>Strips everything after (and including) an CR or LF.
</short>
<descr>
</descr>
@ -1729,7 +1729,7 @@
</element>
<!-- function Visibility: default -->
<element name="GetPart">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1796,7 +1796,7 @@
</element>
<!-- function Visibility: default -->
<element name="StringCase">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1821,7 +1821,7 @@
</element>
<!-- function Visibility: default -->
<element name="ClassCase">
<short>[?]</short>
<short></short>
<descr>
</descr>
<errors>
@ -1843,7 +1843,7 @@
</element>
<!-- "type" alias type Visibility: default -->
<element name="UTF16String">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -1852,7 +1852,7 @@
</element>
<!-- pointer type Visibility: default -->
<element name="PUTF16String" link="UTF16String">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -1861,7 +1861,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8CharacterLength">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr/>
<errors/>
@ -1875,7 +1875,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8Length">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr/>
<errors/>
@ -1885,24 +1885,24 @@
<short/>
</element>
<element name="UTF8Length.s">
<short>[?]</short>
<short></short>
</element>
<element name="UTF8Length.p">
<short>[?]</short>
<short></short>
</element>
<element name="UTF8Length.ByteCount">
<short>[?]</short>
<short></short>
</element>
<!-- function Visibility: default -->
<element name="UTF8CharacterToUnicode">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr/>
<errors/>
<seealso/>
</element>
<element name="UTF8CharacterToUnicode.Result">
<short>[?]</short>
<short></short>
</element>
<element name="UTF8CharacterToUnicode.p">
<short/>
@ -1912,7 +1912,7 @@
</element>
<!-- function Visibility: default -->
<element name="UnicodeToUTF8">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr/>
<errors/>
@ -1929,7 +1929,7 @@
</element>
<!-- function Visibility: default -->
<element name="UnicodeToUTF8SkipErrors">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -1949,7 +1949,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8ToDoubleByteString">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr/>
<errors/>
@ -1963,7 +1963,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8ToDoubleByte">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr/>
<errors/>
@ -1983,7 +1983,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8FindNearestCharStart">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr/>
<errors/>
@ -2003,7 +2003,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8CharStart">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr/>
<errors/>
@ -2023,7 +2023,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8CharToByteIndex">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2046,7 +2046,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="UTF8FixBroken">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2060,7 +2060,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8CharacterStrictLength">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2077,7 +2077,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8CStringToUTF8String">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2097,7 +2097,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8Pos">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2117,7 +2117,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8Copy">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2140,7 +2140,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="UTF8Delete">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2160,7 +2160,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="UTF8Insert">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2180,7 +2180,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8LowerCase">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2197,7 +2197,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8UpperCase">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2214,7 +2214,7 @@
</element>
<!-- function Visibility: default -->
<element name="FindInvalidUTF8Character">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2237,7 +2237,7 @@
</element>
<!-- function Visibility: default -->
<element name="ValidUTF8String">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2254,7 +2254,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="AssignUTF8ListToAnsi">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2271,7 +2271,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF16CharacterLength">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2288,7 +2288,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF16Length">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2311,7 +2311,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF16CharacterToUnicode">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2331,7 +2331,7 @@
</element>
<!-- function Visibility: default -->
<element name="UnicodeToUTF16">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2348,7 +2348,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8CompareStr">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2368,7 +2368,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8CompareText">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2388,7 +2388,7 @@
</element>
<!-- alias type Visibility: default -->
<element name="TConvertResult">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2397,7 +2397,7 @@
</element>
<!-- alias type Visibility: default -->
<element name="TConvertOption">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2406,7 +2406,7 @@
</element>
<!-- alias type Visibility: default -->
<element name="TConvertOptions">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2415,7 +2415,7 @@
</element>
<!-- function Visibility: default -->
<element name="ConvertUTF8ToUTF16">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2447,7 +2447,7 @@
</element>
<!-- function Visibility: default -->
<element name="ConvertUTF16ToUTF8">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2479,7 +2479,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF8ToUTF16">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2496,7 +2496,7 @@
</element>
<!-- function Visibility: default -->
<element name="UTF16ToUTF8">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2513,7 +2513,7 @@
</element>
<!-- procedure Visibility: default -->
<element name="LCLGetLanguageIDs">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2530,7 +2530,7 @@
</element>
<!-- function Visibility: default -->
<element name="CreateFirstIdentifier">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2547,7 +2547,7 @@
</element>
<!-- function Visibility: default -->
<element name="CreateNextIdentifier">
<short>[?] Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
<short> Deprecated, see <link id="#LCL.LazUTF8"/> for replacements.
</short>
<descr>
</descr>
@ -2564,7 +2564,7 @@
</element>
<!-- variable Visibility: default -->
<element name="DebugLnMaxNestPrefixLen">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -2572,7 +2572,7 @@
</element>
<!-- variable Visibility: default -->
<element name="DebugLnNestLvlIndent">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -2580,7 +2580,7 @@
</element>
<!-- variable Visibility: default -->
<element name="DebugText">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>

View File

@ -41,7 +41,7 @@
</element>
<!-- "type" alias type Visibility: default -->
<element name="TTranslateString">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -49,7 +49,7 @@
</element>
<!-- alias type Visibility: default -->
<element name="TCriticalSection">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -86,7 +86,7 @@
<element name="PHandle" link="THandle"/>
<!-- alias type Visibility: default -->
<element name="HKEY">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -105,7 +105,7 @@
</element>
<!-- "type" alias type Visibility: default -->
<element name="HHOOK">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -199,7 +199,7 @@
<!-- alias type Visibility: default -->
<element name="HCURSOR">
<short>The type of a
mouse[?] Cursor
mouse Cursor
Handle.
</short>
<descr>
@ -299,7 +299,7 @@
</element>
<!-- alias type Visibility: default -->
<element name="Short">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -339,7 +339,7 @@
</element>
<!-- "type" alias type Visibility: default -->
<element name="ULONG_PTR">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -347,7 +347,7 @@
</element>
<!-- "type" alias type Visibility: default -->
<element name="TLCLIntfHandle">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -647,7 +647,7 @@
<descr>
</descr>
<seealso>
<!-- ExtTextOut [where?] -->
<link id="#lcl.LCLIntf.ExtTextOut">ExtTextOut</link>
</seealso>
</element>
<!-- constant Visibility: default -->
@ -658,12 +658,12 @@
<descr>
</descr>
<seealso>
<!-- ExtTextOut [where?] -->
<link id="#lcl.LCLIntf.ExtTextOut">ExtTextOut</link>
</seealso>
</element>
<!-- constant Visibility: default -->
<element name="CS_VREDRAW">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -671,7 +671,7 @@
</element>
<!-- constant Visibility: default -->
<element name="CS_HREDRAW">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -1229,7 +1229,7 @@
</element>
<!-- constant Visibility: default -->
<element name="HTERROR">
<short>Hit test: [what?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -1237,7 +1237,7 @@
</element>
<!-- constant Visibility: default -->
<element name="HTTRANSPARENT">
<short>Hit test: transparent area[?]</short>
<short>Hit test: transparent area</short>
<descr>
</descr>
<seealso>
@ -1363,7 +1363,7 @@
</element>
<!-- constant Visibility: default -->
<element name="MF_BYHANDLE">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -3882,7 +3882,7 @@
<!-- constant Visibility: default -->
<element name="MB_ICONASTERICK">
<short>[MB_ICONASTERIsK!!!?]</short>
<short></short>
<descr>
</descr>
<seealso>

View File

@ -74,7 +74,7 @@
<!-- object Visibility: default -->
<element name="TLazDockZone">
<short>
<var>TLazDockZone</var> - a zone for docking in a Lazarus form[?]</short>
<var>TLazDockZone</var> - a zone for docking in a Lazarus form</short>
<descr/>
<errors/>
<seealso/>

View File

@ -59,7 +59,7 @@
</element>
<!-- array type Visibility: default -->
<element name="TFilerSignature">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
@ -337,14 +337,14 @@
</element>
<!-- property Visibility: public -->
<element name="TLazarusResourceStream.Res">
<short>The resource descriptor, owned by the global resource list[?].</short>
<short>The resource descriptor, owned by the global resource list.</short>
<descr/>
<seealso/>
</element>
<!-- class Visibility: default -->
<element name="TAbstractTranslator">
<short>Abstract base class for translators [what's this?]</short>
<descr>[implemented where?]
<short>Abstract base class for translators</short>
<descr>
</descr>
<errors/>
<seealso/>
@ -353,7 +353,7 @@
<element name="TAbstractTranslator.TranslateStringProperty">
<short>The base class for an TReader.OnReadStringProperty handler.
</short>
<descr>Override this method to [do what?]
<descr>
</descr>
<errors/>
<seealso/>
@ -384,7 +384,7 @@
<seealso/>
</element>
<element name="TLRSItemType.lrsitCollection">
<short>A list terminated by an EndList [empty entry?].</short>
<short>A list terminated by an EndList.</short>
</element>
<element name="TLRSItemType.lrsitComponent">
<short>A component has two lists: properties and children.</short>
@ -497,7 +497,7 @@
</element>
<!-- procedure Visibility: private -->
<element name="TLRSObjectReader.SkipSetBody">
<short>Skips until the next empty string [EndList?].</short>
<short>Skips until the next empty string.</short>
<descr/>
<errors/>
<seealso/>
@ -524,7 +524,7 @@
<!-- procedure Visibility: private -->
<element name="TLRSObjectReader.Pop">
<short>Pop an item, or decrement its PushCount.</short>
<descr>Called on EndList (vaNull) encounterd[?]
<descr>Called on EndList (vaNull) encounterd
</descr>
<errors/>
<seealso/>
@ -848,7 +848,7 @@
</element>
<!-- property Visibility: public -->
<element name="TLRSObjectReader.Reader">
<short>The root component reader[?]</short>
<short>The root component reader</short>
<descr/>
<seealso/>
</element>
@ -1469,7 +1469,7 @@
<element link="TLRSObjectWriter" name="TLRSObjectWriterClass"/>
<!-- record type Visibility: default -->
<element name="TLRPositionLink">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
@ -1495,7 +1495,7 @@
<element link="TLRPositionLink" name="PLRPositionLink"/>
<!-- class Visibility: default -->
<element name="TLRPositionLinks">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
@ -1756,7 +1756,7 @@
</element>
<!-- variable Visibility: private -->
<element name="TUTF8Parser.fLastTokenStr">
<short>Holds the last parsed token text[?]</short>
<short>Holds the last parsed token text</short>
<descr/>
<seealso/>
</element>
@ -1780,7 +1780,7 @@
</element>
<!-- procedure Visibility: private -->
<element name="TUTF8Parser.CheckLoadBuffer">
<short>Skips to the next non-null character[?]</short>
<short>Skips to the next non-null character</short>
<descr/>
<seealso/>
</element>
@ -2255,13 +2255,13 @@
</element>
<!-- property Visibility: public -->
<element name="TCustomLazComponentQueue.OnFindComponentClass">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
<!-- class Visibility: default -->
<element name="TLazComponentQueue">
<short>[?]</short>
<short></short>
</element>
<!-- property Visibility: published -->
<element name="TLazComponentQueue.Name">
@ -2273,7 +2273,7 @@
</element>
<!-- record type Visibility: default -->
<element name="TPropertyToSkip">
<short>Item of TPropertiesToSkip[?]</short>
<short>Item of TPropertiesToSkip</short>
<descr/>
<seealso/>
</element>
@ -2305,7 +2305,7 @@
<element name="PRemovedProperty" link="TPropertyToSkip"/>
<!-- class Visibility: default -->
<element name="TPropertiesToSkip">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
@ -2441,7 +2441,7 @@
</element>
<!-- variable Visibility: default -->
<element name="PropertiesToSkip">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>

View File

@ -41,7 +41,7 @@
</element>
<!-- alias type Visibility: default -->
<element name="TStoredType">
<short>An AnsiString or Variant, holding the property values.[?]</short>
<short>An AnsiString or Variant, holding the property values.</short>
<descr/>
<seealso/>
</element>
@ -54,11 +54,11 @@
</element>
<!-- argument Visibility: default -->
<element name="TStoredValueEvent.Sender">
<short>[?]</short>
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="TStoredValueEvent.Value">
<short>[?]</short>
<short></short>
</element>
<!-- object Visibility: default -->
<element name="TStoredValue">
@ -312,7 +312,7 @@
</element>
<!-- property Visibility: public -->
<element name="TPropertyStorageLink.OnSave">
<short>Supply your handler for saving all properties. [almost unused?]
<short>Supply your handler for saving all properties.
</short>
<descr/>
<seealso>
@ -322,7 +322,7 @@
</element>
<!-- property Visibility: public -->
<element name="TPropertyStorageLink.OnLoad">
<short>Supply your handler for loading all properties. [almost unused?]
<short>Supply your handler for loading all properties.
</short>
<descr/>
<seealso>
@ -334,8 +334,7 @@
<element name="TCustomPropertyStorage">
<short>Provides abstract means to Save/Restore properties.
</short>
<descr>[...?]
There seem to exist multiple ways to implement a concrete storage[describe?]
<descr>
</descr>
<errors/>
<seealso/>
@ -347,19 +346,19 @@
<element name="TCustomPropertyStorage.FActive" link="TCustomPropertyStorage.Active"/>
<!-- variable Visibility: private -->
<element name="TCustomPropertyStorage.FLinks">
<short>The list of linked property collections[?]</short>
<short>The list of linked property collections</short>
<descr/>
<seealso/>
</element>
<!-- variable Visibility: private -->
<element name="TCustomPropertyStorage.FSaved">
<short>True when everything has been saved[?]</short>
<short>True when everything has been saved</short>
<descr/>
<seealso/>
</element>
<!-- variable Visibility: private -->
<element name="TCustomPropertyStorage.FRestored">
<short>True when everything has been restored[?]</short>
<short>True when everything has been restored</short>
<descr/>
<seealso/>
</element>
@ -387,7 +386,7 @@
<!-- procedure Visibility: private -->
<element name="TCustomPropertyStorage.NotifyLinks">
<short>Notifies all connected property collections.</short>
<descr>[purpose?]
<descr>
</descr>
<errors/>
<seealso/>
@ -418,21 +417,21 @@
<element name="TCustomPropertyStorage.RootSection.Result"><short/></element>
<!-- procedure Visibility: protected -->
<element name="TCustomPropertyStorage.SaveProperties">
<short>Saves all linked property collections[?]</short>
<short>Saves all linked property collections</short>
<descr/>
<errors/>
<seealso/>
</element>
<!-- procedure Visibility: protected -->
<element name="TCustomPropertyStorage.RestoreProperties">
<short>Restores all linked property collections[?]</short>
<short>Restores all linked property collections</short>
<descr/>
<errors/>
<seealso/>
</element>
<!-- procedure Visibility: protected -->
<element name="TCustomPropertyStorage.GetPropertyList">
<short>Builds a list of all linked propery collections[?]</short>
<short>Builds a list of all linked propery collections</short>
<descr/>
<errors/>
<seealso/>
@ -440,8 +439,8 @@
<element name="TCustomPropertyStorage.GetPropertyList.List"><short/></element>
<!-- procedure Visibility: protected -->
<element name="TCustomPropertyStorage.FinishPropertyList">
<short>set Objects (i.e. the component of each property)[?]</short>
<descr>[?]Reads the Strings[] in the list,
<short>set Objects (i.e. the component of each property)</short>
<descr>Reads the Strings[] in the list,
retrieves and stores the associated Root or Component object in Objects[].
</descr>
<errors/>
@ -464,8 +463,7 @@
<element name="TCustomPropertyStorage.DoReadString">
<short>Default OnReadString handler, must be overridden!
</short>
<descr>[How to implement an OnReadString handler?]
[template where?]
<descr>
</descr>
<errors/>
<seealso/>
@ -474,10 +472,10 @@
<short>The previously stored string.</short>
</element>
<element name="TCustomPropertyStorage.DoReadString.Section">
<short>[?]</short>
<short></short>
</element>
<element name="TCustomPropertyStorage.DoReadString.Ident">
<short>[?]</short>
<short></short>
</element>
<element name="TCustomPropertyStorage.DoReadString.DefaultValue">
<short>The default value, when no string was stored.</short>
@ -486,8 +484,7 @@
<element name="TCustomPropertyStorage.DoWriteString">
<short>Default OnWriteString handler, must be overridden!
</short>
<descr>[How to implement an OnWriteString handler?]
[template where?]
<descr>
</descr>
<errors/>
<seealso/>
@ -514,8 +511,8 @@
<element name="TCustomPropertyStorage.DoWriteInteger.Value"><short/></element>
<!-- procedure Visibility: protected -->
<element name="TCustomPropertyStorage.DoEraseSections">
<short>[?]</short>
<descr>Must be overridden [how?]
<short></short>
<descr>Must be overridden
</descr>
<errors/>
<seealso/>
@ -528,14 +525,14 @@
<element name="TCustomPropertyStorage.Destroy"/>
<!-- procedure Visibility: public -->
<element name="TCustomPropertyStorage.Save">
<short>Saves all linked property collections[?]</short>
<short>Saves all linked property collections</short>
<descr>
<p>
Uses SaveProperties and [or?] StoredValues.SaveValues to do the actual work.
At least one of these should be implemented. [supply links?]
Uses SaveProperties and StoredValues.SaveValues to do the actual work.
At least one of these should be implemented.
</p><p>
All linked property collections are notified,
when everything has been stored, or to actually store their values[???].
when everything has been stored, or to actually store their values.
</p><p>
The OnSavingProperties handler is invoked before the properties are stored,
OnSaveProperties afterwards.
@ -552,14 +549,14 @@
</element>
<!-- procedure Visibility: public -->
<element name="TCustomPropertyStorage.Restore">
<short>Restores all linked property collections[?]</short>
<short>Restores all linked property collections</short>
<descr>
<p>
Uses RestoreProperties and [or?] StoredValues.RestoreValues to do the actual work.
At least one of these should be implemented. [supply links?]
Uses RestoreProperties and StoredValues.RestoreValues to do the actual work.
At least one of these should be implemented.
</p><p>
All linked property collections are notified,
when everything has been restored, or to actually restore the values[???].
when everything has been restored, or to actually restore the values.
</p><p>
The OnRestoringProperties handler is invoked before the properties are restored,
OnRestoreProperties afterwards.
@ -576,7 +573,7 @@
</element>
<!-- procedure Visibility: protected -->
<element name="TCustomPropertyStorage.StorageNeeded">
<short>Override this to provide a storage object[???]</short>
<short>Override this to provide a storage object</short>
<descr/>
<errors/>
<seealso/>
@ -584,7 +581,7 @@
<element name="TCustomPropertyStorage.StorageNeeded.ReadOnly"><short/></element>
<!-- procedure Visibility: protected -->
<element name="TCustomPropertyStorage.FreeStorage">
<short>Override this method to release your storage.[???]</short>
<short>Override this method to release your storage.</short>
<descr/>
<errors/>
<seealso/>
@ -743,7 +740,7 @@
</element>
<!-- procedure Visibility: public -->
<element name="TCustomPropertyStorage.EraseSections">
<short>[?]</short>
<short></short>
<descr/>
<errors/>
<seealso>
@ -752,32 +749,32 @@
</element>
<!-- property Visibility: public -->
<element name="TCustomPropertyStorage.StoredValue">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
<element name="TCustomPropertyStorage.StoredValue.AName"><short/></element>
<!-- property Visibility: public -->
<element name="TCustomPropertyStorage.Root">
<short>[the Owner ?]</short>
<short></short>
<descr/>
<seealso/>
</element>
<!-- property Visibility: public -->
<element name="TCustomPropertyStorage.Active">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
<!-- property Visibility: public -->
<element name="TCustomPropertyStorage.StoredValues">
<short>[?]</short>
<short></short>
<descr/>
<seealso/>
</element>
<!-- property Visibility: public -->
<element name="TCustomPropertyStorage.OnSavingProperties">
<short>Handler called at the begin of Save. [purpose?]</short>
<short>Handler called at the begin of Save.</short>
<descr>
</descr>
<seealso>
@ -785,13 +782,13 @@
</element>
<!-- property Visibility: public -->
<element name="TCustomPropertyStorage.OnSaveProperties">
<short>Handler called at the end of Save. [purpose?]</short>
<short>Handler called at the end of Save.</short>
<descr/>
<seealso/>
</element>
<!-- property Visibility: public -->
<element name="TCustomPropertyStorage.OnRestoringProperties">
<short>Handler called at the begin of Restore. [purpose?]</short>
<short>Handler called at the begin of Restore.</short>
<descr>
</descr>
<seealso>
@ -799,7 +796,7 @@
</element>
<!-- property Visibility: public -->
<element name="TCustomPropertyStorage.OnRestoreProperties">
<short>Handler called at the end of Restore. [purpose?]</short>
<short>Handler called at the end of Restore.</short>
<descr/>
<seealso/>
</element>

View File

@ -126,7 +126,7 @@
<short>Characters are shown unmodified.</short>
</element>
<element name="TEchoMode.emNone">
<short>All characters shown as spaces [or nothing displayed at all?].</short>
<short>All characters shown as spaces.</short>
</element>
<element name="TEchoMode.emPassword">
<short>All characters shown as PasswordChar.</short>
@ -150,13 +150,13 @@
<short>Both horizontal and vertical scrollbars are shown.</short>
</element>
<element name="TScrollStyle.ssAutoHorizontal">
<short>A horizontal scrollbar is shown when needed[?].</short>
<short>A horizontal scrollbar is shown when needed.</short>
</element>
<element name="TScrollStyle.ssAutoVertical">
<short>A vertical scrollbar is shown when needed[?].</short>
<short>A vertical scrollbar is shown when needed.</short>
</element>
<element name="TScrollStyle.ssAutoBoth">
<short>Both scrollbars are shown as needed[?].</short>
<short>Both scrollbars are shown as needed.</short>
</element>
<!-- enumeration type Visibility: default -->
<element name="TScrollCode">
@ -204,7 +204,7 @@
<seealso/>
</element>
<element name="TScrollEvent.Sender">
<short>The scrollbar[?]</short>
<short>The scrollbar</short>
</element>
<element name="TScrollEvent.ScrollCode">
<short>The scroll action.</short>
@ -548,7 +548,7 @@
<element name="TGroupBox">
<short>A container that allows a number of objects to be grouped physically and conceptually on a form.</short>
<descr>
<p>The objects can be moved around together and have certain properties in common.[?]</p>
<p>The objects can be moved around together and have certain properties in common.</p>
</descr>
<seealso>
<link id="HowToUseStdCtrls"/>
@ -726,7 +726,6 @@
<p>
A ComboBox <b>comb</b>ines an edit <b>box</b> with an item list.
The list can be either static (always visible), or drops down when needed.
[Should read <u>comb</u>ines an edit <u>box</u>, but fpdoc errors?]
</p><p>
Depending on the ComboBox <var>Style</var> the user can type text into the edit box,
or he can select items from the <var>Items</var> list.
@ -736,7 +735,6 @@
</p>
<p>It has some interesting properties including <var>AutoComplete</var> and <var>AutoCompleteText</var>, <var>AutoDropDown</var>
and the ability to create and add a History display.
[how to use all that?]
</p>
</descr>
</element>
@ -1210,9 +1208,9 @@
<element name="TCustomComboBox.Destroy"/>
<!-- procedure Visibility: public -->
<element name="TCustomComboBox.IntfGetItems">
<short>Called whenever the items can [must?] be just-in-time populated.</short>
<short>Called whenever the items can be just-in-time populated.</short>
<descr>
Gets list of items from the interface[?].
Gets list of items from the interface.
Invokes GetItems, which calls the OnGetItems handler.
</descr>
<errors/>
@ -1423,12 +1421,10 @@
</element>
<!-- property Visibility: protected -->
<element name="TCustomComboBox.OnGetItems">
<short>Handler invoked when widgetset[?] items list can [must?] be populated</short>
<short>Handler invoked when widgetset items list can be populated</short>
<descr>
<p>Some widgetsets like gtk call this just before the list drops down, while others do it on handle creation.
This event allows to handle both cases with one event.
</p><p>
[What's the purpose or task of the handler?]
</p>
</descr>
<seealso><link id="TCustomComboBox.IntfGetItems"/></seealso>
@ -1472,7 +1468,7 @@
</p>
<p>When no text is selected, SelStart is the cursor position, and SelLength=0.
</p><p>
Writing moves the cursor, and removes the selection[?].
Writing moves the cursor, and removes the selection.
Set SelLength after changing SelStart, to establish a new selection.
</p><p>
SelStart is a <b>zero-based</b> index into Text, in contrast to usual <b>1-based</b> string indices.
@ -1657,7 +1653,7 @@
<short>The ListBox control.</short>
</element>
<element name="TSelectionChangeEvent.User">
<short>True if the user changed the selection, False if changed by code[?].</short>
<short>True if the user changed the selection, False if changed by code.</short>
</element>
<!-- object Visibility: default -->
<element name="TCustomListBox">
@ -2441,7 +2437,6 @@
as well as simple editing and clipboard operations.
</p>
<p>Text attributes (bold, italic...) are <b>not</b> supported.
[see TSynEdit...?]
</p>
</descr>
</element>
@ -2687,7 +2682,7 @@
</element>
<!-- property Visibility: public -->
<element name="TCustomEdit.AutoSize">
<short>Allows to adjust the control to the extent of the contained text.[?]</short>
<short>Allows to adjust the control to the extent of the contained text.</short>
<descr>
</descr>
<seealso>
@ -2702,8 +2697,8 @@
<short>The position of the text cursor.</short>
<descr>
<p>
Character positions are relative to the string, independent of LTR/RTL display.[?]
The position reflects logical (UTF-8) characters.[?]
Character positions are relative to the string, independent of LTR/RTL display.
The position reflects logical (UTF-8) characters.
</p><p>
Position zero is right <b>before</b> the first character.
</p><p>
@ -2921,7 +2916,7 @@
</seealso>
</element>
<element name="TCustomMemo.RealSetText.Value">
<short>The entire text in one string. Lines are separated by LineFeed (LF) and/or CarriageReturn (CR) characters.[?]</short>
<short>The entire text in one string. Lines are separated by LineFeed (LF) and/or CarriageReturn (CR) characters.</short>
</element>
<!-- function Visibility: protected -->
<element name="TCustomMemo.GetCachedText" link="#LCL.Controls.TControl.GetCachedText">
@ -3701,7 +3696,7 @@
</element>
<!-- property Visibility: public -->
<element name="TCustomButton.Active">
<short>True if this control is the Cancel or Default button.[?]</short>
<short>True if this control is the Cancel or Default button.</short>
</element>
<!-- property Visibility: public -->
<element name="TCustomButton.Cancel">
@ -3729,7 +3724,7 @@
<element name="TCustomButton.ParentColor" link="#LCL.Controls.TControl.ParentColor"/>
<!-- property Visibility: public -->
<element name="TCustomButton.ShortCut">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -3737,7 +3732,7 @@
</element>
<!-- property Visibility: public -->
<element name="TCustomButton.ShortCutKey2">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -3748,7 +3743,7 @@
<!-- object Visibility: default -->
<element name="TButton" link="TCustomButton">
<short>A push button control.</short>
<descr>[?]</descr>
<descr></descr>
</element>
<!-- procedure Visibility: public -->
<element name="TButton.Click" link="#LCL.Controls.TControl.Click"/>
@ -3963,7 +3958,7 @@
</element>
<!-- property Visibility: public -->
<element name="TCustomCheckBox.ShortCut">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>
@ -3971,7 +3966,7 @@
</element>
<!-- property Visibility: public -->
<element name="TCustomCheckBox.ShortCutKey2">
<short>[?]</short>
<short></short>
<descr>
</descr>
<seealso>