MonoTouch.Dialog.BooleanImageElement.BooleanImageElement C# (CSharp) Method

BooleanImageElement() public method

public BooleanImageElement ( string caption, bool value, UIImage onImage, UIImage offImage ) : System
caption string
value bool
onImage UIImage
offImage UIImage
return System
        public BooleanImageElement(string caption, bool value, UIImage onImage, UIImage offImage)
            : base(caption, value)
        {
            this.onImage = onImage;
            this.offImage = offImage;
        }