DataGridViewCell.Displayed Eigenschaft
Definition
Ruft einen Wert ab, der angibt, ob die Zelle momentan auf dem Bildschirm angezeigt wird.Gets a value that indicates whether the cell is currently displayed on-screen.
public:
virtual property bool Displayed { bool get(); };
[System.ComponentModel.Browsable(false)]
public virtual bool Displayed { get; }
member this.Displayed : bool
Public Overridable ReadOnly Property Displayed As Boolean
Eigenschaftswert
true
, wenn die Zelle vollständig oder teilweise auf dem Bildschirm angezeigt wird, andernfalls false
.true
if the cell is on-screen or partially on-screen; otherwise, false
.
- Attribute
Hinweise
Verwenden Sie diese Eigenschaft, um zu bestimmen, ob eine bestimmte Zelle außerhalb des Bildschirms gescrollt wurde.Use this property to determine whether a particular cell has been scrolled off-screen.
Wenn der Visible-Eigenschafts Wert der Zelle false
ist, gibt diese Eigenschaft auch false
zurück.If the cell's Visible property value is false
, this property will return false
as well.