Message 1 of 4

Not applicable
09-06-2012
12:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
When you make a custom table in VB.net, adding in the Row Height property in the custom table create line only changes the data cell row heights, not the title cells or the header cell. How do yo do set the title/header cell row heights ?
Dim oRowHeights_FS(11) As Double oRowHeights_FS(0) = 0.6 oRowHeights_FS(1) = 0.6 oRowHeights_FS(2) = 0.6 oRowHeights_FS(3) = 0.6 oRowHeights_FS(4) = 0.6 oRowHeights_FS(5) = 0.6 oRowHeights_FS(6) = 0.6 oRowHeights_FS(7) = 0.6 oRowHeights_FS(8) = 0.6 oRowHeights_FS(9) = 0.6 oRowHeights_FS(10) = 0.6 oRowHeights_FS(11) = 0.6 Dim position_FrameShear As Point2d = _invApp.TransientGeometry.CreatePoint2d((oInvSheet.Border.RangeBox.MinPoint.X + 16), (oInvSheet.Border.RangeBox.MaxPoint.Y)) Dim oCustomTable_FrameShear As CustomTable oCustomTable_FrameShear = oInvSheet.CustomTables.Add(vValue_FrameType & " " & vValue_Hand & " Frame Shear List", position_FrameShear, 6, 12, oTitles_FrameShear, oContents_FrameShear, oColumnWidths_FrameShear, oRowHeights_FS)
Solved! Go to Solution.