مشاركة عبر


DataRepeater.IsCurrentItemDirty Property

Gets a value that determines whether the data for a DataRepeaterItem in a DataRepeater control has been changed by a user.

Namespace:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

'إقرار
<BrowsableAttribute(False)> _
Public ReadOnly Property IsCurrentItemDirty As Boolean
    Get
'الاستخدام
Dim instance As DataRepeater
Dim value As Boolean

value = instance.IsCurrentItemDirty
[BrowsableAttribute(false)]
public bool IsCurrentItemDirty { get; }
[BrowsableAttribute(false)]
public:
property bool IsCurrentItemDirty {
    bool get ();
}
[<BrowsableAttribute(false)>]
member IsCurrentItemDirty : bool
function get IsCurrentItemDirty () : boolean

Property Value

Type: System.Boolean
true if the data has been changed; otherwise, false.

Remarks

Use this property to determine whether data in the CurrentItem has been changed by a user.

ملاحظة

When the VirtualMode property is set to False (the default), this property will always return false.

.NET Framework Security

See Also

Reference

DataRepeater Class

DataRepeater Members

Microsoft.VisualBasic.PowerPacks Namespace

Other Resources

Introduction to the DataRepeater Control (Visual Studio)

Virtual Mode in the DataRepeater Control (Visual Studio)