Skip to content

Commit af9b418

Browse files
committed
Fix and standardise Markdown in AboutBox docs
1 parent 94ccaa7 commit af9b418

8 files changed

+9
-9
lines changed

AboutBox/3.6/API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This section of the _About Box Component_ documentation describes the API expose
2222
### Enumerated Types
2323

2424
| Type | Descriptions |
25-
|------|--------------|
25+
|:-----|:-------------|
2626
| _TPJAboutBtnPlacing_ | Determines horizontal placement of OK button in about dialog. This is the type of the [_ButtonPlacing_](./API/TPJAboutBoxDlg-ButtonPlacing.md) property. |
2727
| _TPJAboutBtnKinds_ | Determines caption of about dialog's OK button. This is the type of the [_ButtonKind_](./API/TPJAboutBoxDlg-ButtonKind.md) property. |
2828
| _TPJAboutBtnGlyphs_ | Determines what, if any, glyph is displayed on about dialog's OK button. This is the type of the [_ButtonGlyph_](./API/TPJAboutBoxDlg-ButtonGlyph.md) property. |

AboutBox/3.6/API/TPJAboutBoxDlg-ButtonGlyph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type TPJAboutBtnGlyphs = (
1919
The About box contains one button which is used to close the dialog box. The button can display a glyph (bitmap) to indicate its use. This property is used to determine which (if any) glyph to display. Valid values for the property and their meanings are as follows:
2020

2121
| Value | Meaning |
22-
|-----------|-------------|
22+
|:----------|:------------|
2323
| _abgOK_ | A green check mark appears on the button face. |
2424
| _abgCancel_ | A red cross appears on the button face. |
2525
| _abgIgnore_ | A green man walking away appears on the button face. |

AboutBox/3.6/API/TPJAboutBoxDlg-ButtonKind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type TPJAboutBtnKinds = (
1919
The About box contains one button which is used to close the dialog box. The button can display different text to indicate its use. The _ButtonKind_ property is used to determine which text to display. Valid values for the property and their meanings are as follows:
2020

2121
| Value | Text |
22-
|-----------|----------|
22+
|:----------|:---------|
2323
| _abkOK_ | `OK` |
2424
| _abkDone_ | `Done` |
2525
| _abkClose_ | `Close` |

AboutBox/3.6/API/TPJAboutBoxDlg-ButtonPlacing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type TPJAboutBtnPlacing = (abpLeft, abpCentre, abpRight);
1717
The About box contains one button which is used to close the dialog box. The button is positioned at the bottom of the dialog box, but can be aligned left, centre or right. The _ButtonPlacing_ property is used to determine which position the button occupies. Valid values for the property and their meanings are as follows:
1818

1919
| Value | Meaning |
20-
|-----------|-------------|
20+
|:----------|:------------|
2121
| _abpLeft_ | Display the button at the bottom left of the dialog box. |
2222
| _abpCentre_ | Display the button at the bottom centre of the dialog box. |
2323
| _abpRight_ | Display the button at the bottom right of the dialog box. |

AboutBox/3.6/API/TPJAboutBoxDlg-Position.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type TPJAboutPosition = (abpScreen, abpDesktop, abpOwner);
1717
The _Position_ property determines whether the [_CentreDlg_](./TPJAboutBoxDlg-CentreDlg.md), [_DlgTop_](./TPJAboutBoxDlg-DlgTop.md) and [_DlgLeft_](./TPJAboutBoxDlg-DlgLeft.md) properties act relative to screen, desktop or owning form. Valid values for the property and their meanings are as follows:
1818

1919
| Value | Text |
20-
|-----------|----------|
20+
|:----------|:---------|
2121
| _abpScreen_ | The dialog is positioned relative to the screen. |
2222
| _abpDesktop_ | The dialog is positioned relative to the desktop's work area (this takes into account the taskbar and toolbars). |
2323
| _abpOwner_ | The dialog is positioned relative to its owner - usually the form on which the component is dropped. If the component has no owner, or the owner is not a window control, then this setting has no effect and positioning is per _abpScreen_. |

AboutBox/3.6/API/TPJAboutBoxDlg-Version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ The _Version_ property defines the version number (or other text) to appear on t
1616

1717
The default value of this property is an empty string, which displays nothing.
1818

19-
Note: If the [_VersionInfo_](./TPJAboutBoxDlg-VersionInfo.md) property is not nil then _Version_ is ignored.
19+
**Note**: If the [_VersionInfo_](./TPJAboutBoxDlg-VersionInfo.md) property is not nil then _Version_ is ignored.

AboutBox/3.6/API/TPJAboutBoxDlg-VersionInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To enable this to happen a [_TPJVersionInfo_](../../../VerInfo/3/API/TPJVersionI
1919
The following table shows which version information string values are used, along with the properties whose values they replace:
2020

2121
| _VERSIONINFO_ string | Replaces property |
22-
|-----------------------|-------------------|
22+
|:----------------------|:------------------|
2323
| ProductName | [_ProgramName_](./TPJAboutBoxDlg-ProgramName.md) |
2424
| ProductVersion | [_Version_](./TPJAboutBoxDlg-Version.md) |
2525
| LegalCopyright | [_Copyright_](./TPJAboutBoxDlg-Copyright.md) |

AboutBox/3.6/API/TPJAboutBoxDlg.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ The [_HelpContext_](./TPJAboutBoxDlg-HelpContext.md) property allows Windows Hel
1717
## Methods
1818

1919
| Method | Description |
20-
|--------|-------------|
20+
|:-------|:------------|
2121
| [_Execute_](./TPJAboutBoxDlg-Execute.md) | Displays the about box. |
2222

2323
## Properties
2424

2525
| Property | Description |
26-
|----------|-------------|
26+
|:---------|:------------|
2727
| [_ButtonGlyph_](./TPJAboutBoxDlg-ButtonGlyph.md) | Determines which, if any, glyph is displayed on the dialog's close button. |
2828
| [_ButtonHeight_](./TPJAboutBoxDlg-ButtonHeight.md) | Specifies the height of the dialog's close button. |
2929
| [_ButtonKind_](./TPJAboutBoxDlg-ButtonKind.md) | Determines the text displayed on the dialog's close button. |

0 commit comments

Comments
 (0)