/// <summary> /// Determines whether the channel type relates to a calculated channel. /// </summary> public static bool IsCalculated(this Cnl cnl) { return(CnlTypeID.IsCalculated(cnl.CnlTypeID)); }
/// <summary> /// Determines whether the channel can be written to an archive, depending on its type. /// </summary> public static bool IsArchivable(this Cnl cnl) { return(CnlTypeID.IsArchivable(cnl.CnlTypeID)); }
/// <summary> /// Determines whether the channel type relates to an output channel. /// </summary> public static bool IsOutput(this Cnl cnl) { return(CnlTypeID.IsOutput(cnl.CnlTypeID)); }