[Gtk-sharp-list] Gtk.Label set_Text()

Joe Scaduto scooch@noggle.biz
Sun, 19 Oct 2003 11:26:53 -0400


On Sun, 2003-10-19 at 07:55, Jonathan Pryor wrote:
> It's a property, so you don't call it as a function, you call it as if
> it were a member named without the "set_":
> 
> 	Label l = new Label ();
> 	l.Text = "some text in a label";  // calls Widget.set_Text()
> 
>  - Jon

Thanks for clearing that up for me.

Joe