MultiSelect for WinForms
読み取り専用モード
機能 > 読み取り専用モード

MultiSelect provides a way to indicate whether its text editor is read-only or not. This is useful when you want to restrict the user from typing. With the read-only feature, you can select tags from the dropdown list but cannot edit any tags or add any entries by typing in the text editor.

To support ready-only editor, the C1MultiSelect class provides the ReadOnly property. The following code snippet shows how to set this property:

// MultiSelect コントロールの ReadOnly プロパティを True に設定します。
c1MultiSelect1.ReadOnly = true;
' MultiSelect コントロールの ReadOnly プロパティを True に設定します。
C1MultiSelect1.ReadOnly = True