public static bool Value(IQBBoolType bl) { if (bl == null) { return(false); } else { return(bl.GetValue()); } }
protected bool ReadBool(IQBBoolType value) { bool result = true; if (value != null) { result = value.GetValue(); } return(result); }
public static bool Value(IQBBoolType bl) { if (bl == null) { return false; } else { return bl.GetValue(); } }