public void SetDefault() { this.Name = string.Empty; this.Notes = string.Empty; this.ColourOn = string.Empty; this.ColourOff = string.Empty; this.SizeOn = string.Empty; this.SizeOff = string.Empty; this.BoldOn = string.Empty; this.BoldOff = string.Empty; this.ItalicOn = string.Empty; this.ItalicOff = string.Empty; this.UnderlineOn = string.Empty; this.UnderlineOff = string.Empty; this.Space = ExportConfig.WhiteSpace.Space; }
public void Assign(ExportConfig.FormatCodes iFc) { this.Name = iFc.Name; this.Notes = iFc.Notes; this.ColourOn = iFc.ColourOn; this.ColourOff = iFc.ColourOff; this.SizeOn = iFc.SizeOn; this.SizeOff = iFc.SizeOff; this.BoldOn = iFc.BoldOn; this.BoldOff = iFc.BoldOff; this.ItalicOn = iFc.ItalicOn; this.ItalicOff = iFc.ItalicOff; this.UnderlineOn = iFc.UnderlineOn; this.UnderlineOff = iFc.UnderlineOff; this.Space = iFc.Space; }