PropertyCollection Class
.NET Framework 3.0
Represents a collection of properties that can be added to DataColumn, DataSet, or DataTable.
Namespace: System.Data
Assembly: System.Data (in system.data.dll)
Assembly: System.Data (in system.data.dll)
'Declaration <SerializableAttribute> _ Public Class PropertyCollection Inherits Hashtable 'Usage Dim instance As PropertyCollection
/** @attribute SerializableAttribute() */ public class PropertyCollection extends Hashtable
SerializableAttribute public class PropertyCollection extends Hashtable
Not applicable.
The PropertyCollection can be accessed through the ExtendedProperties property of the DataColumn, DataSet, or DataTable class.
Add custom properties to the DataColumn, DataSet, or DataTable objects through the PropertyCollection. For example, you may want to store the time of the object's creation for later comparison to another object.
The following example creates a timestamp value for a DataTable and adds it to the PropertyCollection.
Private Sub AddTimeStamp() 'Create a new DataTable. Dim table As New DataTable("NewTable") 'Get its PropertyCollection. Dim properties As PropertyCollection = table.ExtendedProperties 'Add a timestamp value to the PropertyCollection. properties.Add("TimeStamp", DateTime.Now) 'Print the timestamp. Console.WriteLine(properties("TimeStamp")) End Sub
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: