Hi,
I'd like to get the Size and Location of TableCell.
I want to show any Control (such as RadioButton or ComboBox ...) over the TextControl.
For simple controls as described above, I have realized in the following code.
As a next step, I want to set the control to the full size of the TableCell.
It's necessary to set the Size and Location to Control, but I can't get the Size and Location from TableCell.
Can I get Size and Location of TableCell?
Thanks,
Kengo ASAMIZU
I'd like to get the Size and Location of TableCell.
I want to show any Control (such as RadioButton or ComboBox ...) over the TextControl.
For simple controls as described above, I have realized in the following code.
Code:
Dim checkbox = New CheckBox()
checkbox.Text = "This is sample?"
checkbox.Checked = True
checkbox.Location = New Point(x, y) ' calculated
TextControl1.Controls.Add(checkbox)
# | AAA | BBB |
1 | Foo | ## I want to place a full size, and Multiline TextBox!! ## |
It's necessary to set the Size and Location to Control, but I can't get the Size and Location from TableCell.
Can I get Size and Location of TableCell?
Thanks,
Kengo ASAMIZU