GrapeCity.Win.MultiRow.v80 アセンブリ > GrapeCity.Win.MultiRow 名前空間 > Section クラス : Visible プロパティ |
例外 | 解説 |
---|---|
System.InvalidOperationException | CurrentCellがこのSection内にあり、CurrentCellが編集モードであるときに、何らかの理由で編集モードを終了できません。 または CurrentCellがこのSection内にあり、何らかの理由でCurrentCellをクリアできません。 または CurrentSectionがこのSectionであり、何らかの理由でCurrentSectionをクリアできません。 |
void setVisibleButton_Click(object sender, EventArgs e) { gcMultiRow1.Rows[0].Visible = !gcMultiRow1.Rows[0].Visible; }
Private Sub setVisibleButton_Click(ByVal sender As Object, ByVal e As EventArgs) Handles setVisibleButton.Click gcMultiRow1.Rows(0).Visible = Not gcMultiRow1.Rows(0).Visible End Sub