| MultiRow Windows Forms > Developer's Guide > Using MultiRow > Multi-touch Features > Zoomed Display of the Drop-down List |
In column header cells, it is possible to have a zoomed-in view of the drop-down list displayed during the touch operation. This section provides information about the zoomed-in display of the drop-down list.
In the column header cells, if you display the drop-down list using touch, the displayed size is larger than the size displayed during the mouse operation. The size of the drop-down list can be set using the TouchDropDownScale property of the cell.
![]() |
|
The following code enlarges the size of the drop-down list of the ColumnHeaderCell which is a common cell, to 200% of its default size.

Imports System.Windows.Forms
Imports GrapeCity.Win.MultiRow
Dim textBoxCell1 = New TextBoxCell()
textBoxCell1.Name = "textBoxCell1"
textBoxCell1.Size = New Size(200, 20)
Dim template As Template = template.CreateGridTemplate(New Cell() {textBoxCell1})
Dim columnHeaderCell = DirectCast(template.ColumnHeaders(0).Cells(0), ColumnHeaderCell)
columnHeaderCell.DropDownList = New HeaderDropDownList("textBoxCell1", False, False)
Dim headerDropDownContextMenu1 = New HeaderDropDownContextMenu()
headerDropDownContextMenu1.Items.AddRange(New ToolStripItem() { New SortToolStripItem(), New SortToolStripItem(), |
using System.Windows.Forms;
using GrapeCity.Win.MultiRow;
TextBoxCell textBoxCell1 = new TextBoxCell();
textBoxCell1.Name = "textBoxCell1";
textBoxCell1.Size = new Size(200, 20);
Template template = Template.CreateGridTemplate(new Cell[] { textBoxCell1 });
ColumnHeaderCell columnHeaderCell = template.ColumnHeaders[0].Cells[0] as ColumnHeaderCell;
columnHeaderCell.DropDownList = new HeaderDropDownList("textBoxCell1", false, false);
HeaderDropDownContextMenu headerDropDownContextMenu1 = new HeaderDropDownContextMenu();
headerDropDownContextMenu1.Items.AddRange(new ToolStripItem[]{ new SortToolStripItem(), new SortToolStripItem(), |