Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IndexBitmap Class / Or Method / Or(IndexBitmap) Method
The bitmap with which to perform the bitwise OR operation.


In This Topic
    Or(IndexBitmap) Method
    In This Topic
    Performs the bitwise OR operation between the elements of the current IndexBitmap object and the corresponding elements in the specified array.
    Syntax
    'Declaration
     
    
    Public Overloads Sub Or( _
       ByVal otherBitmap As IndexBitmap _
    ) 
    'Usage
     
    
    Dim instance As IndexBitmap
    Dim otherBitmap As IndexBitmap
     
    instance.Or(otherBitmap)
    public void Or( 
       IndexBitmap otherBitmap
    )

    Parameters

    otherBitmap
    The bitmap with which to perform the bitwise OR operation.
    Remarks
    The current IndexBitmap object will be modified to store the result of the bitwise OR operation.
    See Also