Ejemplo n.º 1
0
 public FormattingInfo(FormattingInfo parent, FormatDetails formatDetails, Format format, object currentValue)
 {
     this.Parent   = parent;
     CurrentValue  = currentValue;
     Format        = format;
     FormatDetails = formatDetails;
 }
Ejemplo n.º 2
0
 public FormattingInfo(FormattingInfo parent, FormatDetails formatDetails, Placeholder placeholder, object currentValue)
 {
     this.Parent        = parent;
     this.FormatDetails = formatDetails;
     this.Placeholder   = placeholder;
     this.Format        = placeholder.Format;
     this.CurrentValue  = currentValue;
 }