mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 11:15:30 +00:00
21 lines
495 B
Plaintext
21 lines
495 B
Plaintext
|
//
|
||
|
// Gtk.TextTag.custom - Gtk TextTag class customizations
|
||
|
//
|
||
|
// Author: Radek Doulik (rodo@ximian.com)
|
||
|
//
|
||
|
// Copyright (C) 2002 Ximian, Inc.
|
||
|
//
|
||
|
// This code is inserted after the automatically generated code.
|
||
|
//
|
||
|
|
||
|
public Pango.Weight Weight {
|
||
|
get {
|
||
|
GLib.Value val = new GLib.Value ();
|
||
|
GetProperty ("weight", val);
|
||
|
Pango.Weight ret = (Pango.Weight) (int) val;
|
||
|
return ret;
|
||
|
}
|
||
|
set {
|
||
|
SetProperty ("weight", new GLib.Value ((int) value));
|
||
|
}
|
||
|
}
|