AuScGen.WhiteFramework.RadioButton.RadioButton C# (CSharp) Method

RadioButton() public method

public RadioButton ( string GuiMap, string LogicalName, ControlAccess ControlAccess ) : System
GuiMap string
LogicalName string
ControlAccess ControlAccess
return System
        public RadioButton(string GuiMap, string LogicalName, ControlAccess ControlAccess)
            : base(GuiMap, LogicalName)
        {
            myControlAccess = ControlAccess;
            myControlAccess.IntitializeControl<TestStack.White.UIItems.RadioButton>(GuimapPath, LogicalName);
            Control = myControlAccess.UIControl;

        }
RadioButton