CardMaker.Card.Export.PdfSharpExporter.MoveToNextRow C# (CSharp) Метод

MoveToNextRow() приватный Метод

Adjusts the y position to the next row based on the current layout respecting the horizontal centering option
private MoveToNextRow ( ) : void
Результат void
        private void MoveToNextRow()
        {
            m_dDrawX = m_dMarginX;
            m_dDrawY += m_dNextRowYAdjust;
            if (CardMakerSettings.PrintAutoHorizontalCenter)
            {
                CenterLayoutPositionOnNewRow();
            }
            // reset the row adjust to be that of the current layout
            m_dNextRowYAdjust = m_dLayoutPointHeight + m_dBufferY;
        }