Calendar.DataBoundAppointment.DataBoundAppointment C# (CSharp) Method

DataBoundAppointment() public method

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

            this.row = row;
        }