CardMaker.Card.FormattedText.FormattedTextDataCache.RenderLackOfSpaceWarning C# (CSharp) Méthode

RenderLackOfSpaceWarning() private static méthode

private static RenderLackOfSpaceWarning ( ProjectLayoutElement zElement, Graphics zGraphics ) : void
zElement CardMaker.XML.ProjectLayoutElement
zGraphics System.Drawing.Graphics
Résultat void
        private static void RenderLackOfSpaceWarning(ProjectLayoutElement zElement, Graphics zGraphics)
        {
            zGraphics.DrawLine(Pens.Red, 0, zElement.height - 4, zElement.width, zElement.height - 4);
            zGraphics.DrawLine(Pens.Purple, 0, zElement.height - 8, zElement.width, zElement.height - 8);
            zGraphics.DrawLine(Pens.Blue, 0, zElement.height - 12, zElement.width, zElement.height - 12);
        }