Advertisement
Guest User

PlcVariableDisplay

a guest
Sep 3rd, 2019
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.31 KB | None | 0 0
  1. <div class="var-name float-left">@Variable.DisplayName</div>
  2. @if (Variable.Type == typeof(bool))
  3. {
  4.     bool boolValue = (bool) Variable.Value;
  5.     <div class="var-value float-right"><EjsCheckBox Checked="@boolValue" Disabled="true" /></div>
  6. }
  7. else
  8. {
  9.     <div class="var-value float-left">@Variable.Value</div>
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement