namespace SHH.CameraSdk.HikFeatures; /// /// 云台动作枚举 /// public enum PtzAction { /// 云台向左 Left = 0, /// 云台向上 Up = 1, /// 云台向右 Right = 2, /// 云台向下 Down = 3, /// 云台左上 LeftUp = 4, /// 云台左下 LeftDown = 5, /// 云台右上 RightUp = 6, /// 云台右下 RightDown = 7, /// 云台自动 Auto = 8, /// 放大 ZoomIn = 9, /// 缩小 ZoomOut = 10, /// 聚焦近 FocusNear = 11, /// 聚焦远 FocusFar = 12, /// 光圈大 IrisOpen = 13, /// 光圈小 IrisClose = 14, /// 雨刷 Wiper = 15, }