示例#1
0
 void IBMDSwitcherInputCallback.PropertyChanged(_BMDSwitcherInputPropertyId propId)
 {
     switch (propId)
     {
         case _BMDSwitcherInputPropertyId.bmdSwitcherInputPropertyIdLongName:
             if (LongNameChanged != null)
                 LongNameChanged(this, null);
             break;
     }
 }
 void IBMDSwitcherInputCallback.PropertyChanged(_BMDSwitcherInputPropertyId propId)
 {
     switch (propId)
     {
     case _BMDSwitcherInputPropertyId.bmdSwitcherInputPropertyIdLongName:
         if (LongNameChanged != null)
         {
             LongNameChanged(this, null);
         }
         break;
     }
 }
示例#3
0
        void IBMDSwitcherInputCallback.PropertyChanged(_BMDSwitcherInputPropertyId propId)
        {
            switch (propId)
            {
                case _BMDSwitcherInputPropertyId.bmdSwitcherInputPropertyIdAvailableExternalPortTypes:
                    if (AvailableExternalPortTypesChanged != null)
                        AvailableExternalPortTypesChanged(this, null);
                    break;

                case _BMDSwitcherInputPropertyId.bmdSwitcherInputPropertyIdCurrentExternalPortType:
                    if (CurrentExternalPortTypeChanged != null)
                        CurrentExternalPortTypeChanged(this, null);
                    break;

                case _BMDSwitcherInputPropertyId.bmdSwitcherInputPropertyIdInputAvailability:
                    if (InputAvailabilityChanged != null)
                        InputAvailabilityChanged(this, null);
                    break;

                case _BMDSwitcherInputPropertyId.bmdSwitcherInputPropertyIdIsPreviewTallied:
                    if (IsPreviewTalliedChanged != null)
                        IsPreviewTalliedChanged(this, null);
                    break;

                case _BMDSwitcherInputPropertyId.bmdSwitcherInputPropertyIdIsProgramTallied:
                    if (IsProgramTalliedChanged != null)
                        IsProgramTalliedChanged(this, null);
                    break;

                case _BMDSwitcherInputPropertyId.bmdSwitcherInputPropertyIdLongName:
                    if (LongNameChanged != null)
                        LongNameChanged(this, null);
                    break;

                case _BMDSwitcherInputPropertyId.bmdSwitcherInputPropertyIdPortType:
                    if (PortTypeChanged != null)
                        PortTypeChanged(this, null);
                    break;

                case _BMDSwitcherInputPropertyId.bmdSwitcherInputPropertyIdShortName:
                    if (ShortNameChanged != null)
                        ShortNameChanged(this, null);
                    break;
            }
        }