DataGridViewRow.Visible Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit une valeur indiquant si la ligne est visible.
public:
virtual property bool Visible { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public override bool Visible { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Visible : bool with get, set
Public Overrides Property Visible As Boolean
Valeur de propriété
true
si la ligne est visible ; sinon, false
.
- Attributs
Exceptions
La ligne se trouve dans un contrôle DataGridView et est une ligne partagée.
Exemples
L’exemple de code suivant montre comment utiliser la DataGridViewBand.Visible propriété, qui est presque identique à la Visible propriété de la DataGridViewRow classe . Cet exemple de code fait partie d’un exemple plus grand fourni pour la DataGridViewBand classe .
// 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
Remarques
Utilisez cette propriété pour masquer une ligne de l’affichage tout en conservant la ligne dans .DataGridView Pour supprimer complètement une ligne, utilisez la DataGridViewRowCollection.Remove méthode .