MCPcopy
hub / github.com/lxn/walk / boolProperty

Struct boolProperty

property.go:187–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187type boolProperty struct {
188 get func() bool
189 set func(v bool) error
190 changed *Event
191 source interface{}
192 sourceChangedHandle int
193}
194
195func NewBoolProperty(get func() bool, set func(b bool) error, changed *Event) Property {
196 return &boolProperty{get: get, set: set, changed: changed}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected