Seal.Forms.ReportViewerForm.GetFormValue C# (CSharp) 메소드

GetFormValue() 개인적인 메소드

private GetFormValue ( string id ) : string
id string
리턴 string
        string GetFormValue(string id)
        {
            string result = "";
            HtmlElement htmlId = HeaderForm.All[id];
            if (htmlId != null) result = htmlId.GetAttribute("value");
            return result;
        }