PHP-GTK
Monday, November 23, 2009 
download | documentation | applications | faq | changelog | resources 


search for in the  


previousGtkLabel::get
GtkLabel::get_attributesnext

Last updated: Mon, 23 Nov 2009
view this page in English

GtkLabel::get_angle

Returns the angle of rotation in degrees (0-359).

Example 77. Getting and Setting an Angle for GtkLabel

<?php
// Create a window to hold the label.
$window = new GtkWindow();
// Set up the window to close cleanly.
$window->connect_simple('destroy', array('Gtk', 'main_quit'));
 
// Create a label
$label = new GtkLabel('Degree Angle');
 
// Set the angle to 50 degrees.
$label->set_angle(50);
 
// Now update the label with the current angle.
$label->set_text($label->get_angle() . ' ' . $label->get_text());
 
// Add the label to the window.
$window->add($label);
 
// Show the window and start the main loop.
$window->show_all();
Gtk::main();
?>
This example produces the following window:

See also: set_angle()


User Contributed Notes
gtk.gtklabel.method.get_angle.php
add a note about notes
There are no user contributed notes for this page.


previousGtkLabel::get
GtkLabel::get_attributesnext

Last updated: Mon, 23 Nov 2009
view this page in English


credits 

PHP  Copyright © 2001-2009 The PHP Group
 All rights reserved.
Last updated: Mon Nov 23 02:47:13 2009 UTC