Recurity.Swf.FocalGradient.Verify C# (CSharp) Method

Verify() public method

Verifies this object and its components for documentation compliance.
public Verify ( ) : bool
return bool
        public override bool Verify()
        {
            if ( ( byte )this._interpolationMode > 0x01 || ( ( byte )this._numGradients > 0x0F || ( byte )this._numGradients < 0x01 ) )
            {
                return false;
            }
            else
            {
                return true;
            }
        }