1 //===============================================================================
2 // Microsoft patterns & practices Enterprise Library
3 // Configuration Application Block
4 //===============================================================================
5 // Copyright © 2004 Microsoft Corporation. All rights reserved.
6 // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
7 // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
8 // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
9 // FITNESS FOR A PARTICULAR PURPOSE.
10 //===============================================================================
12 namespace ConfigurationQuickStart
17 /// Summary description for ConfigurationData.
19 public class EditorFontData
25 public EditorFontData()
41 //[XmlElement("FontSize")]
48 public override string ToString()
50 StringBuilder sb
= new StringBuilder();
51 sb
.AppendFormat("Name = {0}; Size = {1}; Style = {2}", name
, size
.ToString(), style
.ToString());