Canguro.Controller.ItemTextBuilder.getLineSection C# (CSharp) 메소드

getLineSection() 개인적인 메소드

private getLineSection ( LineElement l ) : string
l Canguro.Model.LineElement
리턴 string
        private string getLineSection(LineElement l)
        {
            if (l.Properties is StraightFrameProps)
            {
                Model.Section.FrameSection sec = ((StraightFrameProps)l.Properties).Section;
                return "\n" + sec.Description;
            }

            return string.Empty;
        }