CSReportEditor.cReportEditorError.errGetDescript C# (CSharp) Метод

errGetDescript() публичный статический Метод

public static errGetDescript ( csRptEditorErrors rptErrCode ) : String
rptErrCode csRptEditorErrors
Результат String
        public static String errGetDescript(csRptEditorErrors rptErrCode)
        {
            switch (rptErrCode)
            {
                case csRptEditorErrors.CSRPT_EDITOR_SECTION_TYPE_INVALID:
                    return "The section type of the section argument passed to function getHeightOfSectionsBellowMe is not valid.";
                default:
                    return "There is not information for this error";
            }
        }
    }
cReportEditorError