RichTextBox.SelectedRtf Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the currently selected rich text format (RTF) formatted text in the control.
public:
property System::String ^ SelectedRtf { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Browsable(false)]
public string SelectedRtf { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.SelectedRtf : string with get, set
Public Property SelectedRtf As String
Property Value
The selected RTF text in the control.
- Attributes
Remarks
This property enables you to obtain the selected text in the control, including the RTF formatting codes. You can use this property to copy text from your control, complete with formatting, and paste the text in other applications that accept RTF formatted text, such as Microsoft Word and Windows WordPad. To get the selected text, without RTF formatting codes, use the SelectedText property.
If no text is currently selected, the text specified in this property is inserted at the insertion point. If text is selected, any text assigned to this property replaces the selected text.