func FileShare() v = this.props('FileShare').value flags = ((v _and_ 1) ? '|FileShare.None' : '') + ((v _and_ 2) ? '|FileShare.Read' : '') + ((v _and_ 4) ? '|FileShare.Write' : '') + ((v _and_ 8) ? '|FileShare.ReadWrite' : '') + ((v _and_ 16) ? '|FileShare.Delete' : '') + ((v _and_ 32) ? '|FileShare.Inheritable' : '') return('(0' + flags + ')') end