TdxRichEditTableGridLinesVisibility Enum
In This Article
Enumerates options that define if non-printable table borders are visible.
#Declaration
Delphi
TdxRichEditTableGridLinesVisibility = (
Auto,
Visible,
Hidden
);
#Members
Name |
---|
Auto
|
Visible
|
Hidden
|
#Remarks
Options include:
Value | Description |
---|---|
Auto | A Rich Edit control’s internal setting determines if non-printable table borders are visible. |
Visible | A Rich Edit control shows non-printable table borders as blue dashed grid lines. |
Hidden | Non-printable table borders are hidden. |
A Rich Edit control’s Options.TableOptions.GridLines property references the TdxRichEditTableGridLinesVisibility type.
Note
Tdx
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Auto
value in code.
See Also