ListBox.SelectAll メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
public:
virtual void SelectAll() = SelectAll;
void SelectAll();
public void SelectAll();
function selectAll()
Public Sub SelectAll ()
例
if (listBox.SelectionMode != SelectionMode.Single)
{
listBox.SelectAll();
}
if (listBox().SelectionMode() != Windows::UI::Xaml::Controls::SelectionMode::Single)
{
listBox().SelectAll();
}
if (listBox->SelectionMode != SelectionMode::Single)
{
listBox->SelectAll();
}
If listBox.SelectionMode <> SelectionMode.Single Then
listBox.SelectAll()
End If
注釈
警告
SelectAll メソッドは、 SelectionMode プロパティが Multiple または Extended に設定されている場合にのみ呼び出 す必要があります。 SelectionMode が Single のときに SelectAll が呼び出されると、例外がスローされます。