RichTextBox.AutoWordSelection 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
단어 단위로 선택 기능이 활성화되어 있는지 여부를 나타내는 값을 가져오거나 설정합니다.
public:
property bool AutoWordSelection { bool get(); void set(bool value); };
public bool AutoWordSelection { get; set; }
member this.AutoWordSelection : bool with get, set
Public Property AutoWordSelection As Boolean
속성 값
단어 단위로 선택 기능이 활성화되어 있으면 true
이고, 그렇지 않으면 false
입니다. 기본값은 true
입니다.
예제
다음 코드 예제에서는 텍스트를 확대하고, 단어를 두 번 클릭할 때 컨트롤 텍스트에서 단어를 자동으로 선택하고, 컨트롤의 클라이언트 영역 오른쪽에 여백이 있는 단어를 만드는 RichTextBox 방법을 보여 줍니다. 컨트롤의 RichTextBox 너비가 작으면 이 코드를 사용하면 텍스트의 각 문자가 자체 줄에 표시되는 위치가 만들어집니다 RichTextBox . 이 세로 표시 위치에 있는 동안 단어의 모든 부분을 클릭하면 텍스트가 세로로 표시되는 사실에 관계없이 단어의 모든 문자가 선택됩니다. 이 예제에서는 명명richTextBox1
된 컨트롤이 포함된 폼이 RichTextBox 있어야 합니다.
private:
void ZoomMyRichTextBox()
{
// Enable users to select entire word when double clicked.
richTextBox1->AutoWordSelection = true;
// Clear contents of control.
richTextBox1->Clear();
// Set the right margin to restrict horizontal text.
richTextBox1->RightMargin = 2;
// Set the text for the control.
richTextBox1->SelectedText = "Alpha Bravo Charlie Delta Echo Foxtrot";
// Zoom by 2 points.
richTextBox1->ZoomFactor = 2.0f;
}
private void ZoomMyRichTextBox()
{
// Enable users to select entire word when double clicked.
richTextBox1.AutoWordSelection = true;
// Clear contents of control.
richTextBox1.Clear();
// Set the right margin to restrict horizontal text.
richTextBox1.RightMargin = 2;
// Set the text for the control.
richTextBox1.SelectedText = "Alpha Bravo Charlie Delta Echo Foxtrot";
// Zoom by 2 points.
richTextBox1.ZoomFactor = 2.0f;
}
Private Sub ZoomMyRichTextBox()
' Enable users to select entire word when double clicked.
richTextBox1.AutoWordSelection = True
' Clear contents of control.
richTextBox1.Clear()
' Set the right margin to restrict horizontal text.
richTextBox1.RightMargin = 2
' Set the text for the control.
richTextBox1.SelectedText = "Alpha Bravo Charlie Delta Echo Foxtrot"
' Zoom by 2 points.
richTextBox1.ZoomFactor = 2.0F
End Sub
설명
이 속성을 설정 true
하면 컨트롤에서 텍스트의 일부를 선택하면 전체 단어가 선택됩니다.