DataGrid.ParentRowsVisibleChanged イベント
ParentRowsVisible プロパティ値が変更された場合に発生します。
Public Event ParentRowsVisibleChanged As EventHandler
[C#]
public event EventHandler ParentRowsVisibleChanged;
[C++]
public: __event EventHandler* ParentRowsVisibleChanged;
[JScript] JScript では、このクラスで定義されているイベントを処理できます。ただし、独自に定義することはできません。
イベント データ
イベント ハンドラが EventArgs 型の引数を受け取りました。
解説
イベント処理の詳細については、「 イベントの利用 」を参照してください。
使用例
Private Sub CallParentRowsVisibleChanged()
AddHandler myDataGrid.ParentRowsVisibleChanged, AddressOf _
DataGridParentRowsVisibleChanged_Clicked
End Sub 'CallParentRowsVisibleChanged
' Set the 'ParentRowsVisible' property on click of a button.
Protected Sub ToggleVisible_Clicked(sender As Object, e As EventArgs)
If myDataGrid.ParentRowsVisible = True Then
myDataGrid.ParentRowsVisible = False
Else
myDataGrid.ParentRowsVisible = True
End If
End Sub 'ToggleVisible_Clicked
' raise the event when 'ParentRowsVisible' property is changed.
Protected Sub DataGridParentRowsVisibleChanged_Clicked(sender As Object, e As EventArgs)
Dim myMessage As String = "ParentRowsVisibleChanged event raised, Parent row is : "
Dim visible As Boolean = myDataGrid.ParentRowsVisible
myMessage += IIF(visible," ", "Not") + "Visible"
MessageBox.Show(myMessage, "ParentRowsVisible information")
End Sub 'DataGridParentRowsVisibleChanged_Clicked
[C#]
private void CallParentRowsVisibleChanged()
{
myDataGrid.ParentRowsVisibleChanged +=
new EventHandler(DataGridParentRowsVisibleChanged_Clicked);
}
// Set the 'ParentRowsVisible' property on click of a button.
protected void ToggleVisible_Clicked(object sender, EventArgs e)
{
if (myDataGrid.ParentRowsVisible == true)
myDataGrid.ParentRowsVisible = false;
else
myDataGrid.ParentRowsVisible = true;
}
// raise the event when 'ParentRowsVisible' property is changed.
protected void DataGridParentRowsVisibleChanged_Clicked(object sender, EventArgs e)
{
string myMessage = "ParentRowsVisibleChanged event raised, Parent row is : ";
bool visible = myDataGrid.ParentRowsVisible;
myMessage += (visible ? " " : " NOT ") + "visible";
MessageBox.Show(myMessage, "ParentRowsVisible information");
}
[C++]
private:
void CallParentRowsVisibleChanged() {
myDataGrid->ParentRowsVisibleChanged +=
new EventHandler(this, &MyForm::DataGridParentRowsVisibleChanged_Clicked);
}
// Set the 'ParentRowsVisible' property on click of a button.
protected:
void ToggleVisible_Clicked(Object* /*sender*/, EventArgs* /*e*/) {
if (myDataGrid->ParentRowsVisible == true)
myDataGrid->ParentRowsVisible = false;
else
myDataGrid->ParentRowsVisible = true;
}
// raise the event when 'ParentRowsVisible' property is changed.
void DataGridParentRowsVisibleChanged_Clicked(Object* /*sender*/, EventArgs* /*e*/) {
String* myMessage = S"ParentRowsVisibleChanged event raised, Parent row is : ";
bool visible = myDataGrid->ParentRowsVisible;
myMessage = String::Concat(myMessage, visible ? S" " : S" NOT ", S"visible");
MessageBox::Show(myMessage, S"ParentRowsVisible information");
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ