You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FontFamily.cs 256B

1234567891011121314151617181920
  1. using System;
  2. namespace System.Drawing
  3. {
  4. // FontFamily
  5. public class FontFamily : MarshalByRefObject
  6. {
  7. // properties
  8. public string Name { get; private set; }
  9. // constructor
  10. public FontFamily (string name)
  11. {
  12. this.Name = name;
  13. }
  14. }
  15. }