Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I was able to show my 43 dynamic columns in datagridview in c# vertically left to right bottom-up,but during printing I was not able to print it has I have shown it in datagridview.

strFormat1.FormatFlags = StringFormatFlags.DirectionVertical;<br />

By using the above line, it prints right to left and top to bottom, which is difficult to read.
My question is how to print from left to right vertical headings.
To show in gridview I have used the below code:-

C#
DataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.EnableResizing;
            DataGridView1.ColumnHeadersHeight = 50;
            DataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader;

            // Here we attach an event handler to the cell painting event
            DataGridView1.CellPainting += new DataGridViewCellPaintingEventHandler(DataGridView1_CellPainting);

private void DataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
        {

            // check that we are in a header cell!
            if (e.RowIndex == -1 && e.ColumnIndex >= 0)
            {
                e.PaintBackground(e.ClipBounds, true);
                Rectangle rect = this.DataGridView1.GetColumnDisplayRectangle(e.ColumnIndex, true);
                Size titleSize = TextRenderer.MeasureText(e.Value.ToString(), e.CellStyle.Font);
                if (this.DataGridView1.ColumnHeadersHeight < titleSize.Width)
                {
                    this.DataGridView1.ColumnHeadersHeight = titleSize.Width;
                }

                e.Graphics.TranslateTransform(0, titleSize.Width);
                e.Graphics.RotateTransform(-90.0F);

                // This is the key line for bottom alignment - we adjust the PointF based on the 
                // ColumnHeadersHeight minus the current text width. ColumnHeadersHeight is the
                // maximum of all the columns since we paint cells twice - though this fact
                // may not be true in all usages!   
                e.Graphics.DrawString(e.Value.ToString(), this.Font, Brushes.Black, new PointF(rect.Y - (sbsDataGridView1.ColumnHeadersHeight - titleSize.Width), rect.X));

                // The old line for comparison
                //e.Graphics.DrawString(e.Value.ToString(), this.Font, Brushes.Black, new PointF(rect.Y, rect.X));


                e.Graphics.RotateTransform(90.0F);
                e.Graphics.TranslateTransform(0, -titleSize.Width);
                
                e.Handled = true;
            }

        }

For printing :-

C#
foreach (DataGridViewColumn GridCol in DataGridView1.Columns)
                        {




                            e.Graphics.FillRectangle(new SolidBrush(Color.LightGray),
                                new Rectangle((int)arrColumnLefts[iCount], iTopMargin,
                                (int)arrColumnWidths[iCount], iHeaderHeight));

                            e.Graphics.DrawRectangle(Pens.Black,
                                new Rectangle((int)arrColumnLefts[iCount], iTopMargin,
                                (int)arrColumnWidths[iCount], iHeaderHeight));



                            e.Graphics.DrawString(GridCol.HeaderText, GridCol.InheritedStyle.Font,
                                new SolidBrush(GridCol.InheritedStyle.ForeColor),
                                new RectangleF((int)arrColumnLefts[iCount], iTopMargin,
                                (int)arrColumnWidths[iCount], iHeaderHeight), strFormat1);


                            iCount++;
                        }
private void printDocument1_BeginPrint(object sender, PrintEventArgs e)

        {

            try
            {
                iRow = 0;
                strFormat1 = new StringFormat();
                strFormat1.Alignment = StringAlignment.Near;
                strFormat1.LineAlignment = StringAlignment.Center;
                strFormat1.Trimming = StringTrimming.EllipsisCharacter;
                strFormat1.FormatFlags = StringFormatFlags.DirectionVertical;


                arrColumnLefts.Clear();
                arrColumnWidths.Clear();
                iCellHeight = 0;
                 //iCount = 0;
                bFirstPage = true;
                bNewPage = true;

                 //Calculating Total Widths
                iTotalWidth = 0;
                foreach (DataGridViewColumn dgvGridCol in DataGridView1.Columns)
                {
                    iTotalWidth += dgvGridCol.Width;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }


Somewhere, I have read that after using this strFormat1.FormatFlags = StringFormatFlags.DirectionVertical, I have to again rotate it but I don't know how to do it.

My question is long because of the code that I have posted but it is necessary to elaborate my problem.
Pleas reply as soon as possible.
Posted
Updated 26-Mar-14 20:35pm
v7

1 solution

This is the third repost of how to print vertically first row in c#[^]. Please stop spamming, and use the Improve question link in the original to add more information.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900