Calendar.DataBoundAppointment.DataBoundAppointment C# (CSharp) Méthode

DataBoundAppointment() public méthode

public DataBoundAppointment ( DataRow row ) : System
row System.Data.DataRow
Résultat System
        public DataBoundAppointment(DataRow row)
        {
            if (row == null)
                throw new ArgumentNullException("row");

            this.row = row;
        }