OK In progress...

This commit is contained in:
Kolan Sh 2018-01-22 12:28:01 +03:00
parent 6adc0a57b6
commit b4ada02aa5
1 changed files with 6 additions and 6 deletions

View File

@ -9,27 +9,27 @@ namespace CairoChart {
/** /**
* A font family name, encoded in UTF-8. * A font family name, encoded in UTF-8.
*/ */
public string family { get; set; } public virtual string family { get; set; }
/** /**
* The new font size, in user space units. * The new font size, in user space units.
*/ */
public double size { get; set; } public virtual double size { get; set; }
/** /**
* The slant for the font. * The slant for the font.
*/ */
public Cairo.FontSlant slant { get; set; } public virtual Cairo.FontSlant slant { get; set; }
/** /**
* The weight for the font. * The weight for the font.
*/ */
public Cairo.FontWeight weight { get; set; } public virtual Cairo.FontWeight weight { get; set; }
/** /**
* Font/Text orientation. * Font/Text orientation.
*/ */
public Gtk.Orientation orient { get; set; } public virtual Gtk.Orientation orient { get; set; }
/** /**
* Constructs a new ``Font``. * Constructs a new ``Font``.
@ -55,7 +55,7 @@ namespace CairoChart {
/** /**
* Gets a copy of the ``Font``. * Gets a copy of the ``Font``.
*/ */
public Font copy () { public virtual Font copy () {
return new Font(family, size, slant, weight, orient); return new Font(family, size, slant, weight, orient);
} }
} }