Class DateTimeInfo
Represents detailed information about a specific date and time.
Inheritance
System.Object
    DateTimeInfo
  Inherited Members
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: BoldReports.RDL.Data
Assembly: BoldReports.Web.dll
Syntax
public class DateTimeInfo
  Constructors
DateTimeInfo()
Declaration
public DateTimeInfo()
  Properties
Day
Gets or sets the day component of the date and time.
Declaration
public int Day { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | An System.Int32 representing the day of the month.  | 
      
Hour
Gets or sets the hour component of the date and time.
Declaration
public int Hour { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | An System.Int32 representing the hour.  | 
      
Minute
Gets or sets the minute component of the date and time.
Declaration
public int Minute { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | An System.Int32 representing the minute.  | 
      
Month
Gets or sets the month component of the date and time.
Declaration
public int Month { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | An System.Int32 representing the month.  | 
      
Second
Gets or sets the second component of the date and time.
Declaration
public int Second { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | An System.Int32 representing the second.  | 
      
Year
Gets or sets the year component of the date and time.
Declaration
public int Year { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | An System.Int32 representing the year.  |