Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2213_irace/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/DataValidation/ExcelDataValidationAny.cs @ 18242

Last change on this file since 18242 was 12074, checked in by sraggl, 10 years ago

#2341: Added EPPlus-4.0.3 to ExtLibs

File size: 3.7 KB
Line 
1/*******************************************************************************
2 * You may amend and distribute as you like, but don't remove this header!
3 *
4 * EPPlus provides server-side generation of Excel 2007/2010 spreadsheets.
5 * See http://www.codeplex.com/EPPlus for details.
6 *
7 * Copyright (C) 2011  Jan Källman
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
17 * See the GNU Lesser General Public License for more details.
18 *
19 * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
20 * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
21 *
22 * All code and executables are provided "as is" with no warranty either express or implied.
23 * The author accepts no liability for any damage or loss of business that this product may cause.
24 *
25 * Code change notes:
26 *
27 * Author             Change            Date
28 * ******************************************************************************
29 * Raziq York                   Added                   2014-08-08
30 *******************************************************************************/
31using System;
32using System.Collections.Generic;
33using System.Linq;
34using System.Text;
35using OfficeOpenXml.DataValidation.Formulas.Contracts;
36using OfficeOpenXml.DataValidation.Formulas;
37using System.Xml;
38using OfficeOpenXml.DataValidation.Contracts;
39
40namespace OfficeOpenXml.DataValidation
41{
42    /// <summary>
43    /// Any value validation.
44    /// </summary>
45    public class ExcelDataValidationAny : ExcelDataValidation, IExcelDataValidationAny
46    {
47        /// <summary>
48        /// Constructor
49        /// </summary>
50        /// <param name="worksheet"></param>
51        /// <param name="address"></param>
52        /// <param name="validationType"></param>
53        internal ExcelDataValidationAny(ExcelWorksheet worksheet, string address, ExcelDataValidationType validationType)
54            : base(worksheet, address, validationType)
55        {
56        }
57
58        /// <summary>
59        /// Constructor
60        /// </summary>
61        /// <param name="worksheet"></param>
62        /// <param name="address"></param>
63        /// <param name="validationType"></param>
64        /// <param name="itemElementNode"></param>
65        internal ExcelDataValidationAny(ExcelWorksheet worksheet, string address, ExcelDataValidationType validationType, XmlNode itemElementNode)
66            : base(worksheet, address, validationType, itemElementNode)
67        {
68        }
69
70        /// <summary>
71        /// Constructor
72        /// </summary>
73        /// <param name="worksheet"></param>
74        /// <param name="address"></param>
75        /// <param name="validationType"></param>
76        /// <param name="itemElementNode"></param>
77        /// <param name="namespaceManager"></param>
78        internal ExcelDataValidationAny(ExcelWorksheet worksheet, string address, ExcelDataValidationType validationType, XmlNode itemElementNode, XmlNamespaceManager namespaceManager)
79            : base(worksheet, address, validationType, itemElementNode, namespaceManager)
80        {
81        }
82
83        /// <summary>
84        /// This method will validate the state of the validation
85        /// </summary>
86        public override void Validate()
87        {
88        }
89    }
90}
Note: See TracBrowser for help on using the repository browser.