// AForge Direct Show Library // AForge.NET framework // http://www.aforgenet.com/framework/ // // Copyright © AForge.NET, 2009-2013 // contacts@aforgenet.com // namespace AForge.Video.DirectShow { using System; /// /// The enumeration specifies a setting on a camera. /// public enum CameraControlProperty { /// /// Pan control. /// Pan = 0, /// /// Tilt control. /// Tilt, /// /// Roll control. /// Roll, /// /// Zoom control. /// Zoom, /// /// Exposure control. /// Exposure, /// /// Iris control. /// Iris, /// /// Focus control. /// Focus } /// /// The enumeration defines whether a camera setting is controlled manually or automatically. /// [Flags] public enum CameraControlFlags { /// /// No control flag. /// None = 0x0, /// /// Auto control Flag. /// Auto = 0x0001, /// /// Manual control Flag. /// Manual = 0x0002 } }