Bagikan melalui


DataGridViewColumn.Visible Properti

Definisi

Mendapatkan atau menetapkan nilai yang menunjukkan apakah kolom terlihat.

public:
 virtual property bool Visible { bool get(); void set(bool value); };
public override bool Visible { get; set; }
member this.Visible : bool with get, set
Public Overrides Property Visible As Boolean

Nilai Properti

true jika kolom terlihat; jika tidak, false.

Contoh

Contoh kode berikut menunjukkan cara menggunakan DataGridViewBand.Visible properti , yang hampir identik Visible dengan properti DataGridViewColumn kelas . Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk DataGridViewBand gambaran umum kelas.

// Hide a band of cells.
void Button6_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   DataGridViewBand^ band = dataGridView->Rows[ 3 ];
   band->Visible = false;
}
// Hide a band of cells.
private void Button6_Click(object sender, System.EventArgs e)
{

    DataGridViewBand band = dataGridView.Rows[3];
    band.Visible = false;
}
' Hide a band of cells.
Private Sub Button6_Click(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles Button6.Click

    Dim band As DataGridViewBand = dataGridView.Rows(3)
    band.Visible = False
End Sub

Keterangan

Gunakan properti ini untuk menyembunyikan kolom dari tampilan sambil mempertahankan kolom di DataGridView. Untuk menghapus kolom sepenuhnya, gunakan DataGridViewColumnCollection.Remove metode .

Untuk menyembunyikan kolom yang dihasilkan secara otomatis saat mengikat ke sumber data, atur properti ini dalam DataBindingComplete penanganan aktivitas.

Berlaku untuk

Lihat juga