wxBitmap.IsOk is a member function in C++ wxWidgets library that checks if a wxBitmap object has been successfully initialized and is in a valid state. It returns a boolean value of true if the bitmap is valid and ready to be used, and false otherwise. This function is helpful in checking the status of a bitmap object before performing any operations on it, ensuring that only valid bitmaps are used in the program.
C++ (Cpp) wxBitmap::IsOk - 30 examples found. These are the top rated real world C++ (Cpp) examples of wxBitmap::IsOk extracted from open source projects. You can rate examples to help us improve the quality of examples.