IXmpDateTime Public interface
Diagram
flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph iTextSharp.xmp iTextSharp.xmp.IXmpDateTime[[IXmpDateTime]] class iTextSharp.xmp.IXmpDateTime interfaceStyle; end subgraph System System.IComparable[[IComparable]] end System.IComparable --> iTextSharp.xmp.IXmpDateTime
Members
Properties
Public properties
|
Type |
Name |
Methods |
|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Methods
Public methods
|
Returns |
Name |
|---|---|
|
|
()
|
|
|
()
|
|
|
()
|
Details
Inheritance
-
IComparable
Methods
HasDate
public bool HasDate()
Summary
This flag is set either by parsing or by setting year, month or day.
Returns
Returns true if the XMPDateTime object has a date portion.
HasTime
public bool HasTime()
Summary
This flag is set either by parsing or by setting hours, minutes, seconds or milliseconds.
Returns
Returns true if the XMPDateTime object has a time portion.
HasTimeZone
public bool HasTimeZone()
Summary
This flag is set either by parsing or by setting hours, minutes, seconds or milliseconds.
Returns
Returns true if the XMPDateTime object has a defined timezone.
Properties
Year
public int Year { get; set; }
Month
public int Month { get; set; }
Day
public int Day { get; set; }
Hour
public int Hour { get; set; }
Minute
public int Minute { get; set; }
Second
public int Second { get; set; }
NanoSecond
public int NanoSecond { get; set; }
TimeZone
public TimeZone TimeZone { get; set; }
Calendar
public XmpCalendar Calendar { get; }
Iso8601String
public string Iso8601String { get; }
Generated with ModularDoc