コード例 #1
0
 public DocumentStorageRule(DocumentAttribute attribute, short ruleOrder, string ruleFilter, string ruleFormat)
 {
     this.Attribute  = attribute;
     this.RuleOrder  = ruleOrder;
     this.RuleFilter = ruleFilter;
     this.RuleFormat = ruleFormat;
 }
コード例 #2
0
 public DocumentStorageAreaRule(DocumentStorageArea storageArea, DocumentAttribute attribute, short ruleOrder, string ruleFilter, string ruleFormat, DocumentRuleOperator ruleOperator)
 {
     this.StorageArea  = storageArea;
     this.Attribute    = attribute;
     this.RuleOrder    = ruleOrder;
     this.RuleFilter   = ruleFilter;
     this.RuleFormat   = ruleFormat;
     this.RuleOperator = ruleOperator;
 }
コード例 #3
0
 public DocumentAttributeValue(DocumentAttribute Attribute, object Value)
 {
     this.Attribute = Attribute;
     this.Value     = Value;
 }