public IToggleButtonUnsizeLabel SetIdMso(string name)
 {
     Id = new ElementId().SetMicrosoftId(name);
     return(this);
 }
 public IToggleButtonUnsizeLabel SetIdQ(string ns, string name)
 {
     Id = new ElementId().SetNamespaceId(ns, name);
     return(this);
 }
 public ToggleButtonUnsize()
 {
     ElementName  = "toggleButton";
     Id           = new ElementId();
     imageVisible = false;
 }
Beispiel #4
0
 public IToggleButtonLabel SetId(string name)
 {
     Id = new ElementId().SetId(name);
     return(this);
 }
Beispiel #5
0
 public IButtonGroupItems SetIdQ(string ns, string name)
 {
     Id = new ElementId().SetNamespaceId(ns, name);
     return(this);
 }
Beispiel #6
0
 public IButtonGroupItems SetId(string name)
 {
     Id = new ElementId().SetId(name);
     return(this);
 }
Beispiel #7
0
 public ButtonGroup()
 {
     items       = new Controls();
     ElementName = "buttonGroup";
     Id          = new ElementId();
 }