BACnet.Explorer.Core.Plugins.Tabs.BinaryInputInfoTab.Active C# (CSharp) Method

Active() public method

Determines whether this page should be created for an object
public Active ( ObjectInfo objectInfo ) : bool
objectInfo ObjectInfo The object info
return bool
        public bool Active(ObjectInfo objectInfo)
        {
            return objectInfo.ObjectIdentifier.Type == (ushort)ObjectType.BinaryInput;
        }
BinaryInputInfoTab