MaskedTextBox.SelectedText 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 MaskedTextBox 控件中当前选择的内容。
public:
virtual property System::String ^ SelectedText { System::String ^ get(); void set(System::String ^ value); };
public override string SelectedText { get; set; }
member this.SelectedText : string with get, set
Public Overrides Property SelectedText As String
属性值
String 类型的当前选定文本。 如果当前没有选定任何文本,此属性将解析为一个空字符串。
注解
使用此属性检索的选择根据控件的格式设置属性(如 Mask、 FormatProviderTextMaskFormat 和 CutCopyMaskFormat)进行格式设置。 使用此属性设置的选择的行为类似于粘贴操作:每个字符都与掩码匹配,并且 MaskInputRejected 针对无效字符引发 事件。 如果 CutCopyMaskFormat 为 true
,则在设置 SelectedText时允许文本和提示字符,除非它们违反掩码,否则将无提示删除。