syntax of textbox.setbounds()
Give me the syntax of textbox.setbounds() method with an explanation
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Jun 4, 2013, 11:11 PM
hi,
this API use to set the specified bounds of the control to specific location and size.
Please refer following link it might help you.
http://msdn.microsoft.com/en-us/library/ad5ah3k5.aspx
http://msdn.microsoft.com/en-us/library/aa334897(v=vs.71).aspx
http://msdn.microsoft.com/en-IN/library/ms180597.aspx
Hemant SrivastavaPosted Jun 4, 2013, 5:53 PM
This method sets the location and size of the text box control
For example:
textBox.SetBounds(600, 400, 100, 200);
It means textBox will be at X= 600 pixel and Y= 400 pixel position with width = 100 pixel, height= 200 Pixel.
Hope it would help.
Pankaj PandeyPosted Jun 3, 2013, 8:31 AM
http://www.codeproject.com/Questions/167670/How-to-Move-the-Textbox-Control-in-C