Seal.Forms.ReportViewerForm.GetFormValue C# (CSharp) Method

GetFormValue() private method

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