-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotesreplicationentry.go
More file actions
106 lines (85 loc) · 4.13 KB
/
notesreplicationentry.go
File metadata and controls
106 lines (85 loc) · 4.13 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESREPLICATIONENTRY_CLASS.html */
package domigo
import (
ole "github.com/go-ole/go-ole"
)
type NotesReplicationEntry struct {
NotesStruct
}
func newNotesReplicationEntry(dispatchPtr *ole.IDispatch) NotesReplicationEntry {
return NotesReplicationEntry{newNotesStruct(dispatchPtr)}
}
/* --------------------------------- Properties --------------------------------- */
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_DESTINATION_PROPERTY_RE.html */
func (r NotesReplicationEntry) Destination() (String, error) {
return getComProperty[String](r, "Destination")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_FORMULA_PROPERTY_RE.html */
func (r NotesReplicationEntry) Formula() (String, error) {
return getComProperty[String](r, "Formula")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_FORMULA_PROPERTY_RE.html */
func (r NotesReplicationEntry) SetFormula(v String) error {
return putComProperty(r, "Formula", v)
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISINCLUDEACL_PROPERTY_RE.html */
func (r NotesReplicationEntry) IsIncludeACL() (Boolean, error) {
return getComProperty[Boolean](r, "IsIncludeACL")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISINCLUDEACL_PROPERTY_RE.html */
func (r NotesReplicationEntry) SetIsIncludeACL(v Boolean) error {
return putComProperty(r, "IsIncludeACL", v)
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISINCLUDEAGENTS_PROPERTY_RE.html */
func (r NotesReplicationEntry) IsIncludeAgents() (Boolean, error) {
return getComProperty[Boolean](r, "IsIncludeAgents")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISINCLUDEAGENTS_PROPERTY_RE.html */
func (r NotesReplicationEntry) SetIsIncludeAgents(v Boolean) error {
return putComProperty(r, "IsIncludeAgents", v)
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISINCLUDEDOCUMENTS_PROPERTY_RE.html */
func (r NotesReplicationEntry) IsIncludeDocuments() (Boolean, error) {
return getComProperty[Boolean](r, "IsIncludeDocuments")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISINCLUDEDOCUMENTS_PROPERTY_RE.html */
func (r NotesReplicationEntry) SetIsIncludeDocuments(v Boolean) error {
return putComProperty(r, "IsIncludeDocuments", v)
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISINCLUDEFORMS_PROPERTY_RE.html */
func (r NotesReplicationEntry) IsIncludeForms() (Boolean, error) {
return getComProperty[Boolean](r, "IsIncludeForms")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISINCLUDEFORMS_PROPERTY_RE.html */
func (r NotesReplicationEntry) SetIsIncludeForms(v Boolean) error {
return putComProperty(r, "IsIncludeForms", v)
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISINCLUDEFORMULAS_PROPERTY_RE.html */
func (r NotesReplicationEntry) IsIncludeFormulas() (Boolean, error) {
return getComProperty[Boolean](r, "IsIncludeFormulas")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISINCLUDEFORMULAS_PROPERTY_RE.html */
func (r NotesReplicationEntry) SetIsIncludeFormulas(v Boolean) error {
return putComProperty(r, "IsIncludeFormulas", v)
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_SOURCE_PROPERTY_RE.html */
func (r NotesReplicationEntry) Source() (String, error) {
return getComProperty[String](r, "Source")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_VIEWS_PROPERTY_RE.html */
func (r NotesReplicationEntry) Views() (String, error) {
return getComProperty[String](r, "Views")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_VIEWS_PROPERTY_RE.html */
func (r NotesReplicationEntry) SetViews(v String) error {
return putComProperty(r, "Views", v)
}
/* --------------------------------- Methods ------------------------------------ */
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_REMOVE_METHOD_RE.html */
func (r NotesReplicationEntry) Remove() error {
return callComVoidMethod(r, "Remove")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_SAVE_METHOD_RE.html */
func (r NotesReplicationEntry) Save() error {
return callComVoidMethod(r, "Save")
}