Habanero.Faces.Win.ButtonGroupControlWin.this C# (CSharp) Method

this() public method

A facility to index the buttons in the control so that they can be accessed like an array (eg. button["name"])
public this ( string buttonName ) : IButton
buttonName string The name of the button
return IButton
        public IButton this[string buttonName]
        {
            get { return (IButton) this.Controls[buttonName]; }
        }