Skip to main content
A newer version of this page is available.

ExpressRichEdit Control: Resource Strings

  • 19 minutes to read

Strings displayed in various message boxes, dialogs and control elements of Developer Express VCL products are stored as resources. This allows you to easily substitute them with custom strings depending on your needs (for instance, with localized versions).

Developer Express offers you a simple and complete mechanism of localizing the resource strings, which is common to all Developer Express VCL products. You can use the TcxLocalizer component designed to simplify localization tasks, or manually replace the default value of specific resource strings at runtime via the cxSetResourceString procedure calls. When Developer Express controls need a specific string to display, they call the cxGetResourceString function, which returns either the custom string or the default string (if the resource string was not replaced).

Using the Localizer Editor tool accompanying the TcxLocalizer component, you can easily translate resource strings and store them within files for later use with the component. This eliminates the need to copy your cxSetResourceString code blocks between your projects – simply reuse your translation files. To learn more about the TcxLocalizer component, please refer to the How to: Localize an Application topic.

Example

The following code replaces the default caption of the Load Document action (as it is displayed by a linked menu item or client control) with its German equivalent:

cxSetResourceString(@sdxRichEditCommandLoadDocumentMenuCaption, 'Öffnen');

The resource strings used by the ExpressRichEditControl Suite are declared in the dxRichEdit.Strs, dxRichEdit.Dialogs.Strs, dxRichEdit.Commands.Strs, and dxRichEdit.Utils.Exceptions.Strs units. All these resource strings are divided into the following sections:

  • Actions
  • Common Elements
  • Dialogs

Actions

This section contains all resource strings (declared in the dxRichEdit.Dialogs.Strs unit) used in Rich Edit control commands exposed as action objects:

  • Background
  • Document Layout
  • Document Management
  • Document Views
  • Editing
  • Font
  • Headers and Footers
  • Floating Objects
  • Encryption
  • Links
  • Mail Merge
  • Paragraph
  • Printing
  • Range Permissions
  • Show/Hide Rulers
  • Spelling
  • Symbols
  • Table of Contents
  • Tables
  • Zoom

Document Layout

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to document layout customization commands. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource identifier

Value

InsertColumnBreak

Caption

sdxRichEditCommandInsertColumnBreakMenuCaption

‘Column’

Hint

sdxRichEditCommandInsertColumnBreakDescription

‘Indicate that the text following the column break will begin in the next column.’

InsertPageBreak

Caption

sdxRichEditCommandInsertPageBreakMenuCaption

‘Page’

Hint

sdxRichEditCommandInsertPageBreakDescription

‘Start the next page at the current position.’

InsertSectionBreakNextPage

Caption

sdxRichEditCommandInsertSectionBreakNextPageMenuCaption

‘Section (Next Page)’

Hint

sdxRichEditCommandInsertSectionBreakNextPageDescription

‘Insert a section break and start the new section on the next page.’

InsertSectionBreakEvenPage

Caption

sdxRichEditCommandInsertSectionBreakEvenPageMenuCaption

‘Section (Even Page)’

Hint

sdxRichEditCommandInsertSectionBreakEvenPageDescription

‘Insert a section break and start the new section on the next even-numbered page.’

InsertSectionBreakOddPage

Caption

sdxRichEditCommandInsertSectionBreakOddPageMenuCaption

‘Section (Odd Page)’

Hint

sdxRichEditCommandInsertSectionBreakOddPageDescription

‘Insert a section break and start the new section on the next odd-numbered page.’

SetSectionLineNumberingNone

Caption

sdxRichEditCommandSetSectionLineNumberingNoneMenuCaption

‘None’

Hint

sdxRichEditCommandSetSectionLineNumberingNoneDescription

‘No line numbers.’

SetSectionLineNumberingContinuous

Caption

sdxRichEditCommandSetSectionLineNumberingContinuousMenuCaption

‘Continuous’

Hint

sdxRichEditCommandSetSectionLineNumberingContinuousDescription

‘Continuous’

SetSectionLineNumberingRestartNewPage

Caption

sdxRichEditCommandSetSectionLineNumberingRestartNewPageMenuCaption

‘Restart Each Page’

Hint

sdxRichEditCommandSetSectionLineNumberingRestartNewPageDescription

‘Restart Each Page’

SetSectionLineNumberingRestartNewSection

Caption

sdxRichEditCommandSetSectionLineNumberingRestartNewSectionMenuCaption

‘Restart Each Section’

Hint

sdxRichEditCommandSetSectionLineNumberingRestartNewSectionDescription

‘Restart Each Section’

SetSectionOneColumn

Caption

sdxRichEditCommandSetSectionOneColumnMenuCaption

‘One’

Hint

sdxRichEditCommandSetSectionOneColumnDescription

‘One column.’

SetSectionTwoColumns

Caption

sdxRichEditCommandSetSectionTwoColumnsMenuCaption

‘Two’

Hint

sdxRichEditCommandSetSectionTwoColumnsDescription

‘Two columns.’

SetSectionThreeColumns

Caption

sdxRichEditCommandSetSectionThreeColumnsMenuCaption

‘Three’

Hint

sdxRichEditCommandSetSectionThreeColumnsDescription

‘Three columns.’

ShowPageSetupForm

Caption

sdxRichEditCommandShowPageSetupFormMenuCaption

‘Page Setup’

Hint

sdxRichEditCommandShowPageSetupFormDescription

‘Show the Page Setup dialog box.’

ShowPageMarginsSetupForm

Caption

sdxRichEditCommandShowPageMarginsSetupFormMenuCaption

‘Custom M&argins…’

Hint

sdxRichEditCommandShowPageMarginsSetupFormDescription

‘ ‘

ShowPagePaperSetupForm

Caption

sdxRichEditCommandShowPagePaperSetupFormMenuCaption

‘More P&aper Sizes…’

Hint

sdxRichEditCommandShowPagePaperSetupFormDescription

‘ ‘

ShowColumnSetupForm

Caption

sdxRichEditCommandShowColumnsSetupFormMenuCaption

‘More &Columns’

Hint

sdxRichEditCommandShowColumnsSetupFormDescription

‘Show the Columns dialog box to customize column widths.’

Document Management

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to document file management commands. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource identifier

Value

NewDocument

Caption

sdxRichEditCommandNewEmptyDocumentMenuCaption

‘New’

Hint

sdxRichEditCommandNewEmptyDocumentDescription

‘Create a new document.’

LoadDocument

Caption

sdxRichEditCommandLoadDocumentMenuCaption

‘Open’

Hint

sdxRichEditCommandLoadDocumentDescription

‘Open a document.’

SaveDocument

Caption

sdxRichEditCommandSaveDocumentMenuCaption

‘Save’

Hint

sdxRichEditCommandSaveDocumentDescription

‘Save the document’

SaveDocumentAs

Caption

sdxRichEditCommandSaveDocumentAsMenuCaption

‘Save As’

Hint

sdxRichEditCommandSaveDocumentAsDescription

‘Open the Save As dialog box to select a file format and save the document to a new location.’

Document Views

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to document view switching commands. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource identifier

Value

SwitchToDraftView

Caption

sdxRichEditCommandSwitchToDraftViewMenuCaption

‘Draft View’

Hint

sdxRichEditCommandSwitchToDraftViewDescription

‘View the document as a draft to quickly edit the text.’#13#10#13#10’Certain elements of the document such as headers and footers will not be visible in this view.’

SwitchToPrintLayoutView

Caption

sdxRichEditCommandSwitchToPrintLayoutViewMenuCaption

‘Print Layout’

Hint

sdxRichEditCommandSwitchToPrintLayoutViewDescription

‘View the document as it will appear on a printed page.’

SwitchToSimpleView

Caption

sdxRichEditCommandSwitchToSimpleViewMenuCaption

‘Simple View’

Hint

sdxRichEditCommandSwitchToSimpleViewDescription

‘View the document as a simple memo.’#13#10#13#10’This view ignores the page layout to draw attention to text editing.’

Editing

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to commands related to text editing. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource identifier

Value

CopySelection

Caption

sdxRichEditCommandCopySelectionMenuCaption

‘&Copy’

Hint

sdxRichEditCommandCopySelectionDescription

‘Copy the selection and put it on the Clipboard.’

CutSelection

Caption

sdxRichEditCommandCutSelectionMenuCaption

‘Cut the selection from the document and put it on the Clipboard.’

Hint

sdxRichEditCommandCutSelectionDescription

‘Cu&t’

PasteSelection

Caption

sdxRichEditCommandPasteMenuCaption

‘&Paste’

Hint

sdxRichEditCommandPasteDescription

‘Paste the contents of the Clipboard.’

SelectAll

Caption

sdxRichEditCommandSelectAllMenuCaption

‘Select &All’

Hint

sdxRichEditCommandSelectAllDescription

‘Select entire document content.’

SearchFind

Caption

sdxRichEditCommandFindMenuCaption

‘Find’

Hint

sdxRichEditCommandFindDescription

‘Find text in the document’

SearchFindNext

Caption

sdxRichEditCommandFindAndReplaceNextMenuCaption

‘Find Next’

Hint

sdxRichEditCommandFindAndReplaceNextDescription

‘Repeats the last search forward’

SearchReplace

Caption

sdxRichEditCommandReplaceMenuCaption

‘Replace’

Hint

sdxRichEditCommandReplaceDescription

‘Replace text in the document’

Undo

Caption

sdxRichEditCommandUndoMenuCaption

‘&Undo’

Hint

sdxRichEditCommandUndoDescription

‘Undo the last operation.’

Redo

Caption

sdxRichEditCommandRedoMenuCaption

‘&Redo’

Hint

sdxRichEditCommandRedoDescription

‘Redo the last operation.’

Font

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to font customization commands. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource Identifier

Value

ChangeFontColor

Caption

sdxRichEditCommandChangeFontColorMenuCaption

‘Font Color’

Hint

sdxRichEditCommandChangeFontColorDescription

‘Change the font color.’

ChangeFontName

Caption

sdxRichEditCommandChangeFontNameMenuCaption

‘Font’

Hint

sdxRichEditCommandChangeFontNameDescription

‘Change the font face.’

ChangeFontSize

Caption

sdxRichEditCommandChangeFontSizeMenuCaption

‘Font Size’

Hint

sdxRichEditCommandChangeFontSizeDescription

‘Change the font color.’

DecreaseFontSize

Caption

sdxRichEditCommandDecreaseFontSizeMenuCaption

‘Shrink Font’

Hint

sdxRichEditCommandDecreaseFontSizeDescription

‘Decrease the font size.’

IncreaseFontSize

Caption

sdxRichEditCommandIncreaseFontSizeMenuCaption

‘Grow Font’

Hint

sdxRichEditCommandIncreaseFontSizeDescription

‘Increase the font size.’

TextHighlight

Caption

sdxRichEditCommandHighlightTextMenuCaption

‘Text Highlight Color’

Hint

sdxRichEditCommandHighlightTextDescription

‘Make text look like it was marked with a highlighter pen.’

TextLowerCase

Caption

sdxRichEditCommandMakeTextLowerCaseMenuCaption

‘lowercase’

Hint

sdxRichEditCommandMakeTextLowerCaseDescription

‘Change all the selected text to lowercase.’

TextUpperCase

Caption

sdxRichEditCommandMakeTextUpperCaseMenuCaption

‘UPPERCASE’

Hint

sdxRichEditCommandMakeTextUpperCaseDescription

‘Change all the selected text to UPPERCASE’

ToggleFontBold

Caption

sdxRichEditCommandToggleFontBoldMenuCaption

‘&Bold’

Hint

sdxRichEditCommandToggleFontBoldDescription

‘Make the selected text bold.’

ToggleFontItalic

Caption

sdxRichEditCommandToggleFontItalicMenuCaption

‘&Italic’

Hint

sdxRichEditCommandToggleFontItalicDescription

‘Italicize the selected text.’

ToggleFontUnderline

Caption

sdxRichEditCommandToggleFontUnderlineMenuCaption

‘&Underline’

Hint

sdxRichEditCommandToggleFontUnderlineDescription

‘Underline the selected text.’

ToggleFontDoubleUnderline

Caption

sdxRichEditCommandToggleFontDoubleUnderlineMenuCaption

‘Double Underline’

Hint

sdxRichEditCommandToggleFontDoubleUnderlineDescription

‘Double underline’

ToggleFontStrikeout

Caption

sdxRichEditCommandToggleFontStrikeoutMenuCaption

‘Strikethrough’

Hint

sdxRichEditCommandToggleFontStrikeoutDescription

‘Draw a line through the middle of the selected text.’

ToggleFontDoubleStrikeout

Caption

sdxRichEditCommandToggleFontDoubleStrikeoutMenuCaption

‘Double strikethrough’

Hint

sdxRichEditCommandToggleFontDoubleStrikeoutDescription

‘Double strikethrough’

ToggleFontSubscript

Caption

sdxRichEditCommandFontSubscriptMenuCaption

‘Subscript’

Hint

sdxRichEditCommandFontSubscriptDescription

‘Create small letters below the text baseline.’

ToggleFontSuperscript

Caption

sdxRichEditCommandFontSuperscriptMenuCaption

‘Superscript’

Hint

sdxRichEditCommandFontSuperscriptDescription

‘Create small letters above the line of text.’

ToggleTextCase

Caption

sdxRichEditCommandToggleTextCaseMenuCaption

‘tOGGLE cASE’

Hint

sdxRichEditCommandToggleTextCaseDescription

‘tOGGLE cASE.’

Headers and Footers

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to commands related to document header and footer editing. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource identifier

Value

ClosePageHeaderFooter

Caption

sdxRichEditCommandClosePageHeaderFooterMenuCaption

‘Close Header and Footer’

Hint

sdxRichEditCommandClosePageHeaderFooterDescription

‘Close the Header and Footer Tools.’#13#10#13#10’You can also double click the document area to return to editing it.’

GoToPageHeader

Caption

sdxRichEditCommandGoToPageHeaderMenuCaption

‘Go to Header’

Hint

sdxRichEditCommandGoToPageHeaderDescription

‘Activate the header on this page so that you can edit it.’

GoToPageFooter

Caption

sdxRichEditCommandGoToPageFooterMenuCaption

‘Go to Footer’

Hint

sdxRichEditCommandGoToPageFooterDescription

‘Activate the footer on this page so that you can edit it.’

GoToNextPageHeaderFooter

Caption

sdxRichEditCommandGoToNextHeaderFooterMenuCaption

‘Show Next’

Hint

sdxRichEditCommandGoToNextHeaderFooterDescription

‘Navigate to the next section’’s header or footer.’

GoToPreviousPageHeaderFooter

Caption

sdxRichEditCommandGoToPreviousHeaderFooterMenuCaption

‘Show Previous’

Hint

sdxRichEditCommandGoToPreviousHeaderFooterDescription

‘Navigate to the previous section’’s header or footer.’

ToggleHeaderFooterLinkToPrevious

Caption

sdxRichEditCommandToggleHeaderFooterLinkToPreviousMenuCaption

‘Link to Previous’

Hint

sdxRichEditCommandToggleHeaderFooterLinkToPreviousDescription

‘Link to the previous section so that the header and footer in the current section contain the same content as in the previous section.’

EditPageHeader

Caption

sdxRichEditCommandEditPageHeaderMenuCaption

‘Header’

Hint

sdxRichEditCommandEditPageHeaderDescription

‘Edit the header of the document.’#13#10#13#10’The content in the header will appear at the top of each printed page.’

EditPageFooter

Caption

sdxRichEditCommandEditPageFooterMenuCaption

‘Footer’

Hint

sdxRichEditCommandEditPageFooterDescription

‘Edit the footer of the document.’#13#10#13#10’The content of the footer will appear at the top of each printed page.’

InsertPageNumberField

Caption

sdxRichEditCommandInsertPageNumberFieldMenuCaption

‘Page Number’

Hint

sdxRichEditCommandInsertPageNumberFieldDescription

‘Insert page numbers into the document.’

InsertPageCountField

Caption

sdxRichEditCommandInsertPageCountFieldMenuCaption

‘Page Count’

Hint

sdxRichEditCommandInsertPageCountFieldDescription

‘Insert total page count into the document.’

ToggleDifferentFirstPage

Caption

sdxRichEditCommandToggleDifferentFirstPageMenuCaption

‘Different First Page’

Hint

sdxRichEditCommandToggleDifferentFirstPageDescription

‘Specify a unique header and footer for the first page of the document.’

ToggleDifferentOddAndEvenPages

Caption

sdxRichEditCommandToggleDifferentOddAndEvenPagesMenuCaption

‘Different Odd && Even Pages’

Hint

sdxRichEditCommandToggleDifferentOddAndEvenPagesDescription

‘Specify that odd-numbered pages should have a different header and footer from even-numbered pages.’

Floating Objects

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to the commands that allow end-users to insert images into a rich text document. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource Identifier

Value

ChangeFloatingObjectFillColor

Caption

sdxRichEditCommandChangeFloatingObjectFillColorMenuCaption

‘Shape Fill’

Hint

sdxRichEditCommandChangeFloatingObjectFillColorDescription

‘Fill the selected shape with a solid color.’

ChangeFloatingObjectOutlineColor

Caption

sdxRichEditCommandChangeFloatingObjectOutlineColorMenuCaption

‘Shape Outline’

Hint

sdxRichEditCommandChangeFloatingObjectOutlineColorDescription

‘Specify color for the outline of the selected shape.’

ChangeFloatingObjectOutlineWidth

Caption

sdxRichEditCommandChangeFloatingObjectOutlineWidthMenuCaption

‘Shape Outline Weight’

Hint

sdxRichEditCommandChangeFloatingObjectOutlineWidthDescription

‘Specify width for the outline of the selected shape.’

FloatingObjectBringForward

Caption

sdxRichEditCommandFloatingObjectBringForwardMenuCaption

‘Bring Forward’

Hint

sdxRichEditCommandFloatingObjectBringForwardDescription

‘Bring the selected object forward so that it is hidden by fewer object that are in front of it.’

FloatingObjectBringInFrontOfText

Caption

sdxRichEditCommandFloatingObjectBringInFrontOfTextMenuCaption

‘Bring in Front of Text’

Hint

sdxRichEditCommandFloatingObjectBringInFrontOfTextDescription

‘ ‘

FloatingObjectBringToFront

Caption

sdxRichEditCommandFloatingObjectBringToFrontMenuCaption

‘Bring to Front’

Hint

sdxRichEditCommandFloatingObjectBringToFrontDescription

‘Bring the selected object in front of all other objects so that no part of it is hidden behind another object.’

FloatingObjectSendBackward

Caption

sdxRichEditCommandFloatingObjectSendBackwardMenuCaption

‘Send Backward’

Hint

sdxRichEditCommandFloatingObjectSendBackwardDescription

‘Send the selected object backward so that it is hidden by the object that are in front of it.’

FloatingObjectSendBehindText

Caption

sdxRichEditCommandFloatingObjectSendBehindTextMenuCaption

‘Send Behind Text’

Hint

sdxRichEditCommandFloatingObjectSendBehindTextDescription

‘ ‘

FloatingObjectSendToBack

Caption

sdxRichEditCommandFloatingObjectSendToBackMenuCaption

‘Send to Back’

Hint

sdxRichEditCommandFloatingObjectSendToBackDescription

‘Send the selected object behind all other objects.’

InsertFloatingObjectPicture

Caption

sdxRichEditCommandInsertFloatingObjectPictureMenuCaption

‘Picture’

Hint

sdxRichEditCommandInsertFloatingObjectPictureDescription

‘Insert a picture from a file.’

InsertPicture

Caption

sdxRichEditCommandInsertPictureMenuCaption

‘Inline Picture’

Hint

sdxRichEditCommandInsertPictureDescription

‘Insert inline picture from a file.’

InsertTextBox

Caption

sdxRichEditCommandInsertTextBoxMenuCaption

‘Text Box’

Hint

sdxRichEditCommandInsertTextBoxDescription

‘Insert a text box into the document.’

SetFloatingObjectBehindTextWrapType

Caption

sdxRichEditCommandSetFloatingObjectBehindTextWrapTypeMenuCaption

‘Behind Text’

Hint

sdxRichEditCommandSetFloatingObjectBehindTextWrapTypeDescription

‘ ‘

SetFloatingObjectBottomCenterAlignment

Caption

sdxRichEditCommandSetFloatingObjectBottomCenterAlignmentMenuCaption

‘Bottom Center’

Hint

sdxRichEditCommandSetFloatingObjectBottomCenterAlignmentDescription

‘Position in Bottom Center with Square Text Wrapping.’

SetFloatingObjectBottomLeftAlignment

Caption

sdxRichEditCommandSetFloatingObjectBottomLeftAlignmentMenuCaption

‘Bottom Left’

Hint

sdxRichEditCommandSetFloatingObjectBottomLeftAlignmentDescription

‘Position in Bottom Left with Square Text Wrapping.’

SetFloatingObjectBottomRightAlignment

Caption

sdxRichEditCommandSetFloatingObjectBottomRightAlignmentMenuCaption

‘Bottom Right’

Hint

sdxRichEditCommandSetFloatingObjectBottomRightAlignmentDescription

‘Position in Bottom Right with Square Text Wrapping.’

SetFloatingObjectInFrontOfTextWrapType

Caption

sdxRichEditCommandSetFloatingObjectInFrontOfTextWrapTypeMenuCaption

‘In Front of Text’

Hint

sdxRichEditCommandSetFloatingObjectInFrontOfTextWrapTypeDescription

‘ ‘

SetFloatingObjectMiddleCenterAlignment

Caption

sdxRichEditCommandSetFloatingObjectMiddleCenterAlignmentMenuCaption

‘Middle Center’

Hint

sdxRichEditCommandSetFloatingObjectMiddleCenterAlignmentDescription

‘Position in the Middle Center with Square Text Wrapping.’

SetFloatingObjectMiddleLeftAlignment

Caption

sdxRichEditCommandSetFloatingObjectMiddleLeftAlignmentMenuCaption

‘Middle Left’

Hint

sdxRichEditCommandSetFloatingObjectMiddleLeftAlignmentDescription

‘Position in Middle Left with Square Text Wrapping.’

SetFloatingObjectMiddleRightAlignment

Caption

sdxRichEditCommandSetFloatingObjectMiddleRightAlignmentMenuCaption

‘Middle Right’

Hint

sdxRichEditCommandSetFloatingObjectMiddleRightAlignmentDescription

‘Position in Middle Right with Square Text Wrapping.’

SetFloatingObjectSquareTextWrapType

Caption

sdxRichEditCommandSetFloatingObjectSquareTextWrapTypeMenuCaption

‘Square’

Hint

sdxRichEditCommandSetFloatingObjectSquareTextWrapTypeDescription

‘ ‘

SetFloatingObjectThroughTextWrapType

Caption

sdxRichEditCommandSetFloatingObjectThroughTextWrapTypeMenuCaption

‘Through’

Hint

sdxRichEditCommandSetFloatingObjectThroughTextWrapTypeDescription

‘ ‘

SetFloatingObjectTightTextWrapType

Caption

sdxRichEditCommandSetFloatingObjectTightTextWrapTypeMenuCaption

‘Tight’

Hint

sdxRichEditCommandSetFloatingObjectTightTextWrapTypeDescription

‘ ‘

SetFloatingObjectTopAndBottomTextWrapType

Caption

sdxRichEditCommandSetFloatingObjectTopAndBottomTextWrapTypeMenuCaption

‘Top and Bottom’

Hint

sdxRichEditCommandSetFloatingObjectTopAndBottomTextWrapTypeDescription

‘ ‘

SetFloatingObjectTopCenterAlignment

Caption

sdxRichEditCommandSetFloatingObjectTopCenterAlignmentMenuCaption

‘Top Center’

Hint

sdxRichEditCommandSetFloatingObjectTopCenterAlignmentDescription

‘Position in Top Center with Square Text Wrapping.’

SetFloatingObjectTopLeftAlignment

Caption

sdxRichEditCommandSetFloatingObjectTopLeftAlignmentMenuCaption

‘Top Left’

Hint

sdxRichEditCommandSetFloatingObjectTopLeftAlignmentDescription

‘Position in Top Left with Square Text Wrapping.’

SetFloatingObjectTopRightAlignment

Caption

sdxRichEditCommandSetFloatingObjectTopRightAlignmentMenuCaption

‘Top Right’

Hint

sdxRichEditCommandSetFloatingObjectTopRightAlignmentDescription

‘Position in Top Right with Square Text Wrapping.’

Encryption

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to the command that invokes the Encrypt the contents of this file dialog. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource Identifier

Value

EncryptDocument

Caption

sdxRichEditCommandEncryptDocumentMenuCaption

‘Encrypt with Password’

Hint

sdxRichEditCommandEncryptDocumentDescription

‘Password-protect this document’

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to the commands that display the Insert Hyperlink and Bookmark dialog windows. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource identifier

Value

ShowBookmarkForm

Caption

sdxRichEditCommandShowBookmarkFormMenuCaption

‘Bookmark’

Hint

sdxRichEditCommandShowBookmarkFormDescription

‘Create a bookmark to assign a name to a specific point in a document’#13#10#13#10’You can make hyperlinks that jump directly to a bookmarked location.’

ShowHyperlinkForm

Caption

sdxRichEditCommandShowHyperlinkFormMenuCaption

‘Hyperlink’

Hint

sdxRichEditCommandShowHyperlinkFormDescription

‘Create a link to a Web page, a picture, an e-mail address, or a program.’

Mail Merge

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to the commands that allow end-users to work with the Mail Merge functionality provided by the Rich Edit control. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource Identifier

Value

ShowInsertMergeFieldForm

Caption

sdxRichEditCommandShowInsertMergeFieldFormMenuCaption

‘Insert Merge Field’

Hint

sdxRichEditCommandShowInsertMergeFieldFormDescription

‘Add a field from a list of recipients or a data table to the document.’

ToggleViewMergedData

Caption

sdxRichEditCommandToggleViewMergedDataMenuCaption

‘View Merged Data’

Hint

sdxRichEditCommandToggleViewMergedDataDescription

‘Replaces the merge fields in your document with actual data from your recipient list so you can see what it looks like.’

ShowMergeDatabaseRecordsForm

Caption

sdxRichEditCommandShowMergeDatabaseRecordsFormMenuCaption

‘Merge to New Document’

Hint

sdxRichEditCommandShowMergeDatabaseRecordsFormDescription

‘Merge to New Document’

ShowAllFieldCodes

Caption

sdxRichEditCommandShowAllFieldCodesMenuCaption

‘Show All Field Codes’

Hint

sdxRichEditCommandShowAllFieldCodesDescription

‘View the document markup with dynamic elements displaying their rich-text codes.’

ShowAllFieldResults

Caption

sdxRichEditCommandShowAllFieldResultsMenuCaption

‘Show All Field Results’

Hint

sdxRichEditCommandShowAllFieldResultsDescription

‘View the document content with dynamic elements displaying real data.’

ToggleFieldCodes

Caption

sdxRichEditCommandToggleFieldCodesMenuCaption

‘Toggle Field Codes’

Hint

sdxRichEditCommandToggleFieldCodesDescription

‘Toggle Field Codes’

CreateField

Caption

sdxRichEditCommandCreateFieldMenuCaption

‘Create Field’

Hint

sdxRichEditCommandCreateFieldDescription

‘Create Field’

UpdateField

Caption

sdxRichEditCommandUpdateFieldMenuCaption

‘Update Field’

Hint

sdxRichEditCommandUpdateFieldDescription

‘Update Field’

UpdateFields

Caption

sdxRichEditCommandUpdateFieldsMenuCaption

‘Update Fields’

Hint

sdxRichEditCommandUpdateFieldsDescription

‘Update Fields’

Paragraph

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to the commands that allow end-users to customize paragraphs in rich text documents. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource identifier

Value

DecrementIndent

Caption

sdxRichEditCommandDecrementIndentMenuCaption

‘Decrease Indent’

Hint

sdxRichEditCommandDecrementIndentDescription

‘Decrease the indent level of the paragraph.’

IncrementIndent

Caption

sdxRichEditCommandIncrementIndentMenuCaption

‘Increase Indent’

Hint

sdxRichEditCommandIncrementIndentDescription

‘Increase the indent level of the paragraph.’

SetSingleParagraphSpacing

Caption

sdxRichEditCommandSetSingleParagraphSpacingMenuCaption

‘1.0’

Hint

sdxRichEditCommandSetSingleParagraphSpacingDescription

‘ ‘

SetSesquialteralParagraphSpacing

Caption

sdxRichEditCommandSetSesquialteralParagraphSpacingMenuCaption

‘1.5’

Hint

sdxRichEditCommandSetSesquialteralParagraphSpacingDescription

‘ ‘

SetDoubleParagraphSpacing

Caption

sdxRichEditCommandSetDoubleParagraphSpacingMenuCaption

‘2.0’

Hint

sdxRichEditCommandSetDoubleParagraphSpacingDescription

‘ ‘

ShowParagraphForm

Caption

sdxRichEditCommandShowParagraphFormMenuCaption

‘P&aragraph…’

Hint

sdxRichEditCommandShowParagraphFormDescription

‘Show the Paragraph dialog box.’

ToggleBulletedList

Caption

sdxRichEditCommandInsertBulletListMenuCaption

‘Bullets’

Hint

sdxRichEditCommandInsertBulletListDescription

‘Start a bulleted list.’

ToggleMultiLevelList

Caption

sdxRichEditCommandInsertMultilevelListMenuCaption

‘Multilevel list’

Hint

sdxRichEditCommandInsertMultilevelListDescription

‘Start a multilevel list.’

ToggleSimpleNumberingList

Caption

sdxRichEditCommandInsertSimpleListMenuCaption

‘Numbering’

Hint

sdxRichEditCommandInsertSimpleListDescription

‘Start a numbering list.’

ToggleShowWhitespace

Caption

sdxRichEditCommandToggleWhitespaceMenuCaption

‘Show/Hide ¶’

Hint

sdxRichEditCommandToggleWhitespaceDescription

‘Show paragraph marks and other hidden formatting symbols.’

ToggleParagraphAlignmentCenter

Caption

sdxRichEditCommandParagraphAlignmentCenterMenuCaption

‘&Center’

Hint

sdxRichEditCommandParagraphAlignmentCenterDescription

‘Center text.’

ToggleParagraphAlignmentLeft

Caption

sdxRichEditCommandParagraphAlignmentLeftMenuCaption

‘Align Text &Left’

Hint

sdxRichEditCommandParagraphAlignmentLeftDescription

‘Align text to the left.’

ToggleParagraphAlignmentRight

Caption

sdxRichEditCommandParagraphAlignmentRightMenuCaption

‘Align Text &Right’

Hint

sdxRichEditCommandParagraphAlignmentRightDescription

‘Align text to the right.’

ToggleParagraphAlignmentJustify

Caption

sdxRichEditCommandParagraphAlignmentJustifyMenuCaption

‘&Justify’

Hint

sdxRichEditCommandParagraphAlignmentJustifyDescription

‘Align text to both left and right margins, adding extra space between words as necessary.’#13#10#13#10’This creates a clean look along the left and right side of the page.’

Printing

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to the Rich Edit control’s printing-related commands. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource Identifier

Value

ShowPrintForm

Caption

sdxRichEditCommandPrintMenuCaption

‘&Print’

Hint

sdxRichEditCommandPrintDescription

‘Select a printer, number of copies, and other printing options before printing.’

ShowPrintPreviewForm

Caption

sdxRichEditCommandPrintPreviewMenuCaption

‘Print Pre&view’

Hint

sdxRichEditCommandPrintPreviewDescription

‘Preview pages before printing.’

Range Permissions

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to the commands that allow end-users to manage document protection and permissions to edit individual ranges.

Command

Displayed by UI Element As

Resource Identifier

Value

ProtectDocument

Caption

sdxRichEditCommandProtectDocumentMenuCaption

‘Protect Document’

Hint

sdxRichEditCommandProtectDocumentDescription

‘Help restrict people from editing the document by specifying a password.’

ShowRangeEditingPermissions

Caption

sdxRichEditCommandShowRangeEditingPermissionsFormMenuCaption

‘Range Editing Permissions’

Hint

sdxRichEditCommandShowRangeEditingPermissionFormDescription

‘Grant user permissions to edit the selected part of the document.’

UnprotectDocument

Caption

sdxRichEditCommandUnprotectDocumentMenuCaption

‘Unprotect Document’

Hint

sdxRichEditCommandUnprotectDocumentDescription

‘Enable users to edit the document.’

Table of Contents

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to the commands that allow end-users to create and manage tables of contents in a rich text document. The following table lists both the resource string names and their default values.

Command

Displayed by UI Element As

Resource Identifier

Value

AddParagraphsToTableOfContents

Caption

sdxRichEditCommandAddParagraphsToTableOfContentsMenuCaption

‘Add Text’

Hint

sdxRichEditCommandAddParagraphsToTableOfContentsDescription

‘Add the current paragraph as an entry in the Table of Contents.’

InsertCaptionPlaceholder

Caption

sdxRichEditCommandInsertCaptionPlaceholderMenuCaption

‘Insert Caption’

Hint

sdxRichEditCommandInsertCaptionPlaceholderDescription

‘Add a caption to a picture or other image.’#13#10’A caption is a line of text that appears below an object to describe it.’

InsertEquationCaption

Caption

sdxRichEditCommandInsertEquationCaptionMenuCaption

‘Equations Caption’

Hint

sdxRichEditCommandInsertEquationCaptionDescription

‘Add a equation caption.’

InsertFigureCaption

Caption

sdxRichEditCommandInsertFigureCaptionMenuCaption

‘Figures Caption’

Hint

sdxRichEditCommandInsertFigureCaptionDescription

‘Add a figure caption.’

InsertTableOfContents

Caption

sdxRichEditCommandInsertTableOfContentsMenuCaption

‘Table of Contents’

Hint

sdxRichEditCommandInsertTableOfContentsDescription

‘Add the Table of Contents to the document.’#13#10’Once you have added a Table of Contents, click the Add Text button to add entries to the table.’

InsertTableOfFigures

Caption

sdxRichEditCommandInsertTableOfFiguresMenuCaption

‘Table of Figures’

Hint

sdxRichEditCommandInsertTableOfFiguresDescription

‘Insert a Table of Figures into the document.’#13#10’A Table of Figures includes a list of all the figures in the document.’

InsertTableOfFiguresPlaceholder

Caption

sdxRichEditCommandInsertTableOfFiguresPlaceholderMenuCaption

‘Insert Table of Figures’

Hint

sdxRichEditCommandInsertTableOfFiguresPlaceholderDescription

‘Insert a Table of Figures into the document.’#13#10’A Table of Figures includes a list of all of the figures, tables or equations in the document.’

InsertTableOfTables

Caption

sdxRichEditCommandInsertTableOfTablesMenuCaption

‘Table of Tables’

Hint

sdxRichEditCommandInsertTableOfTablesDescription

‘Insert a Table of Tables into the document.’#13#10’A Table of Tables includes a list of all the tables in the document.’

InsertTableCaption

Caption

sdxRichEditCommandInsertTableCaptionMenuCaption

‘Tables Caption’

Hint

sdxRichEditCommandInsertTableCaptionDescription

‘Add a table caption.’

InsertTableOfEquations

Caption

sdxRichEditCommandInsertTableOfEquationsMenuCaption

‘Table of Equations’

Hint

sdxRichEditCommandInsertTableOfEquationsDescription

‘Insert a Table of Equations into the document.’#13#10’A Table of Equations includes a list of all the equations in the document.’

ShowTableOfContentsForm

Caption

sdxRichEditCommandEditTOCMenuCaption

‘Edit Table of Contents…’

Hint


‘’

TableOfContentsSetParagraphBodyTextLevel

Caption

sdxRichEditCommandSetParagraphBodyTextLevelMenuCaption

‘Do Not Show in Table of Contents’

Hint

sdxRichEditCommandSetParagraphBodyTextLevelDescription

‘Do Not Show in Table of Contents’

UpdateTableOfContents

Caption

sdxRichEditCommandUpdateTableOfContentsMenuCaption

‘Update Table’

Hint

sdxRichEditCommandUpdateTableOfContentsDescription

‘Update the Table of Contents so that all the entries refer to the correct page number.’

UpdateTableOfFigures

Caption

sdxRichEditCommandUpdateTableOfFiguresMenuCaption

‘Update Table’

Hint

sdxRichEditCommandUpdateTableOfFiguresDescription

‘Update the Table of Figures to include all of the entries in the document.’

TableOfContentsSetParagraphHeading1Level

TableOfContentsSetParagraphHeading2Level

TableOfContentsSetParagraphHeading3Level

TableOfContentsSetParagraphHeading4Level

TableOfContentsSetParagraphHeading5Level

TableOfContentsSetParagraphHeading6Level

[TableOfContentsSetParagraphHeading7Level](xref:176013#CommandsList_TableOfContentsSetParagraphHeading7Level)

TableOfContentsSetParagraphHeading8Level

TableOfContentsSetParagraphHeading9Level

Caption

sdxRichEditCommandSetParagraphHeadingLevelMenuCaption

‘Level %d’

Hint

sdxRichEditCommandSetParagraphHeadingLevelDescription

‘Level %d’

Tables

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to the commands that allow end-users to create, customize, and delete tables in a rich text document. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource Identifier

Value

ShowInsertTableForm

Caption

sdxRichEditCommandInsertTableMenuCaption

‘Insert a table into the document.’

Hint

sdxRichEditCommandInsertTableDescription

‘Table’

ShowTablePropertiesForm

Caption

sdxRichEditCommandShowTablePropertiesFormMenuItemMenuCaption

‘Table Properties…’

Hint

sdxRichEditCommandShowTablePropertiesFormDescription

‘Show the Table Properties dialog box to change advanced table properties, such as indentation and text wrapping options.’

ToggleShowTableGridLines

Caption

sdxRichEditCommandToggleShowTableGridLinesMenuCaption

‘View &Gridlines’

Hint

sdxRichEditCommandToggleShowTableGridLinesDescription

‘Show or hide the gridlines within the table.’

ToggleTableCellsTopLeftAlignment

Caption

sdxRichEditCommandToggleTableCellsTopLeftAlignmentMenuCaption

‘Align Top Left’

Hint

sdxRichEditCommandToggleTableCellsTopLeftAlignmentDescription

‘Align text to the top left corner of the cell.’

ToggleTableCellsTopCenterAlignment

Caption

sdxRichEditCommandToggleTableCellsTopCenterAlignmentMenuCaption

‘Align Top Center’

Hint

sdxRichEditCommandToggleTableCellsTopCenterAlignmentDescription

‘Center text and align it to the top of the cell.’

ToggleTableCellsTopRightAlignment

Caption

sdxRichEditCommandToggleTableCellsTopRightAlignmentMenuCaption

‘Align Top Right’

Hint

sdxRichEditCommandToggleTableCellsTopRightAlignmentDescription

‘Align text to the top right corner of the cell.’

ToggleTableCellsMiddleLeftAlignment

Caption

sdxRichEditCommandToggleTableCellsMiddleLeftAlignmentMenuCaption

‘Align Center Left’

Hint

sdxRichEditCommandToggleTableCellsMiddleLeftAlignmentDescription

‘Center text vertically and align it to the left side of the cell.’

ToggleTableCellsMiddleCenterAlignment

Caption

sdxRichEditCommandToggleTableCellsMiddleCenterAlignmentMenuCaption

‘Align Center’

Hint

sdxRichEditCommandToggleTableCellsMiddleCenterAlignmentDescription

‘Center text horizontally and vertically within the cell.’

ToggleTableCellsMiddleRightAlignment

Caption

sdxRichEditCommandToggleTableCellsMiddleRightAlignmentMenuCaption

‘Align Center Right’

Hint

sdxRichEditCommandToggleTableCellsMiddleRightAlignmentDescription

‘Center text vertically and align it to the right side of the cell.’

ToggleTableCellsBottomLeftAlignment

Caption

sdxRichEditCommandToggleTableCellsBottomLeftAlignmentMenuCaption

‘Align Bottom Left’

Hint

sdxRichEditCommandToggleTableCellsBottomLeftAlignmentDescription

‘Align text to the bottom left corner of the cell.’

ToggleTableCellsBottomCenterAlignment

Caption

sdxRichEditCommandToggleTableCellsBottomCenterAlignmentMenuCaption

‘Align Bottom Center’

Hint

sdxRichEditCommandToggleTableCellsBottomCenterAlignmentDescription

‘Center text and align it to the bottom of the cell.’

ToggleTableCellsBottomRightAlignment

Caption

sdxRichEditCommandToggleTableCellsBottomRightAlignmentMenuCaption

‘Align Bottom Right’

Hint

sdxRichEditCommandToggleTableCellsBottomRightAlignmentDescription

‘Align text to the bottom right corner of the cell.’

ResetTableCellsBorders

Caption

sdxRichEditCommandResetTableCellsBordersMenuCaption

‘&No Border’

Hint

sdxRichEditCommandResetTableCellsBordersDescription

‘Customize the borders of the selected cells.’

ToggleTableCellsAllBorders

Caption

sdxRichEditCommandToggleTableCellsAllBordersMenuCaption

‘&All Borders’

Hint

sdxRichEditCommandToggleTableCellsAllBordersDescription

‘Customize the borders of the selected cells.’

ToggleTableCellsBottomBorder

Caption

sdxRichEditCommandToggleTableCellsBottomBorderMenuCaption

‘&Bottom Border’

Hint

sdxRichEditCommandToggleTableCellsBottomBorderDescription

‘Customize the borders of the selected cells.’

ToggleTableCellsInsideBorder

Caption

sdxRichEditCommandToggleTableCellsInsideBorderMenuCaption

‘&Inside Borders’

Hint

sdxRichEditCommandToggleTableCellsInsideBorderDescription

‘Customize the borders of the selected cells.’

ToggleTableCellsInsideHorizontalBorder

Caption

sdxRichEditCommandToggleTableCellsInsideHorizontalBorderMenuCaption

‘Inside &Horizontal Border’

Hint

sdxRichEditCommandToggleTableCellsInsideHorizontalBorderDescription

‘Customize the borders of the selected cells.’

ToggleTableCellsInsideVerticalBorder

Caption

sdxRichEditCommandToggleTableCellsInsideVerticalBorderMenuCaption

‘Inside &Vertical Border’

Hint

sdxRichEditCommandToggleTableCellsInsideVerticalBorderDescription

‘Customize the borders of the selected cells.’

ToggleTableCellsLeftBorder

Caption

sdxRichEditCommandToggleTableCellsLeftBorderMenuCaption

‘&Left Border’

Hint

sdxRichEditCommandToggleTableCellsLeftBorderDescription

‘Customize the borders of the selected cells.’

ToggleTableCellsOutsideBorder

Caption

sdxRichEditCommandToggleTableCellsOutsideBorderMenuCaption

‘Out&side Borders’

Hint

sdxRichEditCommandToggleTableCellsOutsideBorderDescription

‘Customize the borders of the selected cells.’

ToggleTableCellsRightBorder

Caption

sdxRichEditCommandToggleTableCellsRightBorderMenuCaption

‘&Right Border’

Hint

sdxRichEditCommandToggleTableCellsRightBorderDescription

‘Customize the borders of the selected cells.’

ToggleTableCellsTopBorder

Caption

sdxRichEditCommandToggleTableCellsTopBorderMenuCaption

‘To&p Border’

Hint

sdxRichEditCommandToggleTableCellsTopBorderDescription

‘Customize the borders of the selected cells.’

ToggleTableFixedColumnWidth

Caption

sdxRichEditCommandToggleTableFixedColumnWidthMenuCaption

‘Fixed Column Width’

Hint

sdxRichEditCommandToggleTableFixedColumnWidthDescription

‘Set table size to a fixed width.’

ToggleTableAutoFitContents

Caption

sdxRichEditCommandToggleTableAutoFitContentsMenuCaption

‘AutoFit Contents’

Hint

sdxRichEditCommandToggleTableAutoFitContentsDescription

‘Auto-Fit Table to the contents.’

ToggleTableAutoFitWindow

Caption

sdxRichEditCommandToggleTableAutoFitWindowMenuCaption

‘AutoFit Window’

Hint

sdxRichEditCommandToggleTableAutoFitWindowDescription

‘Auto-Fit Table to the window.’

SplitTable

Caption

sdxRichEditCommandSplitTableMenuCaption

‘Split Table’

Hint

sdxRichEditCommandSplitTableDescription

‘Split the table into two tables.’#13#10#13#10’The selected row will become the first row of the new table.’

ShowSplitTableCellsForm

Caption

sdxRichEditCommandSplitTableCellsMenuCaption

‘Split Cells’

Hint

sdxRichEditCommandSplitTableCellsDescription

‘Split the selected cells into multiple new cells.’

ShowInsertTableCellsForm

Caption

sdxRichEditCommandShowInsertTableCellsMenuCaption

‘’

Hint

sdxRichEditCommandShowInsertTableCellsDescription

‘’

ShowDeleteTableCellsForm

Caption

‘’

Hint

‘’

MergeTableCells

Caption

sdxRichEditCommandMergeTableCellsMenuCaption

‘Merge Cells’

Hint

sdxRichEditCommandMergeTableCellsDescription

‘Merge the selected cells into one cell.’

InsertTableColumnToTheLeft

Caption

sdxRichEditCommandInsertTableColumnToTheLeftMenuCaption

‘Insert Left’

Hint

sdxRichEditCommandInsertTableColumnToTheLeftDescription

‘Add a new column direcly to the left of the selected column.’

InsertTableColumnToTheRight

Caption

sdxRichEditCommandInsertTableColumnToTheRightMenuCaption

‘Insert Right’

Hint

sdxRichEditCommandInsertTableColumnToTheRightDescription

‘Add a new column directly to the right of the selected column.’

InsertTableRowAbove

Caption

sdxRichEditCommandInsertTableRowAboveMenuCaption

‘Insert Above’

Hint

sdxRichEditCommandInsertTableRowAboveDescription

‘Add a new row directly above the selected row’

InsertTableRowBelow

Caption

sdxRichEditCommandInsertTableRowBelowMenuCaption

‘Insert Below’

Hint

sdxRichEditCommandInsertTableRowBelowDescription

‘Add a new row directly below the selected row.

DeleteTable

Caption

sdxRichEditCommandDeleteTableMenuCaption

‘Delete Table’

Hint

sdxRichEditCommandDeleteTableDescription

‘Delete Entire Table.’

DeleteTableColumns

Caption

sdxRichEditCommandDeleteTableColumnsMenuCaption

‘Delete Columns’

Hint

sdxRichEditCommandDeleteTableColumnsDescription

‘Delete Columns’

DeleteTableRows

Caption

sdxRichEditCommandDeleteTableRowsMenuCaption

‘Delete Rows’

Hint

sdxRichEditCommandDeleteTableRowDescription

‘Delete Rows’

Zoom

This section of the dxRichEdit.Commands.Strs unit contains resource strings displayed by UI elements linked to the commands that allow end-users to zoom a document in or out. The following table lists both the resource string names and their default values:

Command

Displayed by UI Element As

Resource identifier

Value

ZoomPercent

Caption

sdxRichEditCommandZoomMenuCaption

‘Zoom’

Hint

sdxRichEditCommandZoomDescription

‘Zoom’

ZoomIn

Caption

sdxRichEditCommandZoomInMenuCaption

‘Zoom In’

Hint

sdxRichEditCommandZoomInDescription

‘Zoom in to get a close-up view of the document.’

ZoomOut

Caption

sdxRichEditCommandZoomOutMenuCaption

‘Zoom Out’

Hint

sdxRichEditCommandZoomOutDescription

‘Zoom out to see more of the page at a reduced size.’