Spread WinForms 15
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IndexBitmap Class / Or Method / Or(IndexBitmap,Int32,Int32) Method
The bitmap with which to perform the bitwise OR operation.
An integer value indicates the start index of the specified range.
An integer value indicates the end index of the specified range.


In This Topic
Or(IndexBitmap,Int32,Int32) 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, _
   ByVal index As Integer, _
   ByVal index2 As Integer _
) 
 
'Usage
 
Dim instance As IndexBitmap
Dim otherBitmap As IndexBitmap
Dim index As Integer
Dim index2 As Integer
 
instance.Or(otherBitmap, index, index2)

Parameters

otherBitmap
The bitmap with which to perform the bitwise OR operation.
index
An integer value indicates the start index of the specified range.
index2
An integer value indicates the end index of the specified range.
Remarks
The current IndexBitmap object will be modified to store the result of the bitwise OR operation.
See Also