PdfRpt.Core.Helper.ElementsWidth.GetPhraseWidth C# (CSharp) 메소드

GetPhraseWidth() 공개 정적인 메소드

Tries to find the Phrase's width, before rendering
public static GetPhraseWidth ( this phrase ) : float
phrase this the phrase
리턴 float
        public static float GetPhraseWidth(this Phrase phrase)
        {
            return phrase.OfType<Chunk>().Sum(inner => (inner).GetWidthPoint());
        }