Exemplo n.º 1
0
 public OptionSelectButton FindOptionSelectButtonByFunctionName(string functionName)
 {
     return(OptionSelectButtons.FirstOrDefault(button => button.FunctionName == functionName));
 }
Exemplo n.º 2
0
 public OptionSelectButton FindOptionSelectButtonByLabelText(string labelText)
 {
     return(OptionSelectButtons.FirstOrDefault(button => button.LabelText == labelText));
 }
Exemplo n.º 3
0
 public OptionSelectButton FindOptionSelectButtonByPositionNumber(float positionNumber)
 {
     return(OptionSelectButtons.FirstOrDefault(button => button.PositionNumber == positionNumber));
 }