예제 #1
0
 public void Add(FontUsage fu)
 {
     if (_list == null)
     {
         _list = new List <FontUsage>();
     }
     _list.Add(fu);
 }
예제 #2
0
        public object Clone()
        {
            FontUsage obj = new FontUsage();

            obj._name = _name;
            if (_font != null)
            {
                obj._font = (Font)_font.Clone();
            }
            return(obj);
        }