コード例 #1
0
		public FormattingInfo(FormattingInfo parent, FormatDetails formatDetails, Format format, object currentValue)
		{
			this.Parent = parent;
			CurrentValue = currentValue;
			Format = format;
			FormatDetails = formatDetails;
		}
コード例 #2
0
 public FormattingInfo(FormattingInfo parent, FormatDetails formatDetails, Format format, object currentValue)
 {
     this.Parent   = parent;
     CurrentValue  = currentValue;
     Format        = format;
     FormatDetails = formatDetails;
 }
コード例 #3
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;
		}
コード例 #4
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;
 }