forked from unidoc/unioffice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatavalidationcompare.go
58 lines (49 loc) · 2.27 KB
/
datavalidationcompare.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright 2017 Baliance. All rights reserved.
//
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased by contacting [email protected].
package spreadsheet
import (
"github.com/unidoc/unioffice/schema/soo/sml"
)
// DVCompareType is a comparison type for a data validation rule. This restricts
// the input format of the cell.
type DVCompareType byte
const (
DVCompareTypeWholeNumber = DVCompareType(sml.ST_DataValidationTypeWhole)
DVCompareTypeDecimal = DVCompareType(sml.ST_DataValidationTypeDecimal)
DVCompareTypeDate = DVCompareType(sml.ST_DataValidationTypeDate)
DVCompareTypeTime = DVCompareType(sml.ST_DataValidationTypeTime)
DVompareTypeTextLength = DVCompareType(sml.ST_DataValidationTypeTextLength)
)
// DVCompareOp is a comparison operator for a data validation rule.
type DVCompareOp byte
const (
DVCompareOpEqual = DVCompareOp(sml.ST_DataValidationOperatorEqual)
DVCompareOpBetween = DVCompareOp(sml.ST_DataValidationOperatorBetween)
DVCompareOpNotBetween = DVCompareOp(sml.ST_DataValidationOperatorNotBetween)
DVCompareOpNotEqual = DVCompareOp(sml.ST_DataValidationOperatorNotEqual)
DVCompareOpGreater = DVCompareOp(sml.ST_DataValidationOperatorGreaterThan)
DVCompareOpGreaterEqual = DVCompareOp(sml.ST_DataValidationOperatorGreaterThanOrEqual)
DVCompareOpLess = DVCompareOp(sml.ST_DataValidationOperatorLessThan)
DVCompareOpLessEqual = DVCompareOp(sml.ST_DataValidationOperatorLessThanOrEqual)
)
const (
DVOpGreater = sml.ST_DataValidationOperatorGreaterThanOrEqual
)
// DataValidationCompare is a view on a data validation rule that is oriented
// towards value comparisons.
type DataValidationCompare struct {
x *sml.CT_DataValidation
}
// SetValue sets the first value to be used in the comparison. For comparisons
// that need only one value, this is the only value used. For comparisons like
// 'between' that require two values, SetValue2 must also be used.
func (d DataValidationCompare) SetValue(v string) {
d.x.Formula1 = &v
}
func (d DataValidationCompare) SetValue2(v string) {
d.x.Formula2 = &v
}