ImageGear .NET v25.2 - Updated
ImageGear.Processing.Advanced Assembly / ImageGear.FreqIP Namespace / ImGearComplexObject Class / WithImaginaryData Method




In This Topic
    WithImaginaryData Method
    In This Topic
    Checks whether a specific ImGearComplexObject class has valid imaginary data.
    Syntax
    'Declaration
     
    Public Function WithImaginaryData() As Boolean
    'Usage
     
    Dim instance As ImGearComplexObject
    Dim value As Boolean
     
    value = instance.WithImaginaryData()
    public bool WithImaginaryData()
    public: bool WithImaginaryData(); 
    public:
    bool WithImaginaryData(); 

    Return Value

    Boolean value.
    Remarks
    This method checks whether a specific ImGearComplexObject class has valid imaginary data, by checking whether there is any non-zero value in the imaginary buffer. If yes, then we will assume imaginary data has been assigned; otherwise no. The reason we can use this comparison is that when any ImGearComplexObject class is created, the constructor automatically clears the data buffer to be 0.
    See Also