Where is ButtonAdv documentation?

Where is the documentation for ButtonAdv? Specifically, I''m looking for a way to detect if the button is currently ''pushed in'' assuming it''s a PushButton (i.e., foo.PushButton = true; )

1 Reply

AR Anupama Roy Syncfusion Team November 17, 2005 02:49 PM UTC

Hi Ross, Sorry for the delayed response. We regret very much for our shortcomings with the Documentation part. We are currently working on this. Take a look at this code snippet and let me know whether this helps you. private void buttonAdv1_Click(object sender, System.EventArgs e) { if(this.buttonAdv1.State==Syncfusion.Windows.Forms.ButtonAdvState.Pressed) MessageBox.Show("Button is pushed"); else MessageBox.Show("Button is in normal state"); } Thanks, Anu.

Loader.
Up arrow icon