The control can auto show when it has focus or the touch keyboard popups if the C1Zoom.AutoShowControl property is True.
Use the following code to programatically set the C1Zoom.AutoShowControl property to True:
Visual Basic |
Copy Code
|
---|---|
C1Zoom1.AutoShowControl = True |
C# |
Copy Code
|
---|---|
c1Zoom1.AutoShowControl = true; |
To control auto show for individual controls, you can use the C1Zoom.ControlAutoShowing event. You can get the displayed area of the control by using the C1Zoom.GetDisplayRectangle method.