![]() |
FLImaging 7.5.18.3
|
FLImaging module execution result object. More...
#include <ResultsDef.h>
Public Member Functions | |
| CResult () | |
| Default constructor. | |
| CResult (const FLImaging::CResult &res) | |
| Copy constructor. | |
| CResult (const EResult eResult) | |
| Copy constructor. | |
| const CResult ^ | operator= (const FLImaging::CResult &res) |
| Assign operator. | |
| const CResult ^ | operator= (EResult eResult) |
| Assign operator. | |
| bool | Assign (const FLImaging::CResult &res) |
| Assign FLImaging::CResult object. | |
| bool | Assign (const EResult eResult) |
| Assign CResult object. | |
| bool | Equal (const FLImaging::CResult &res) |
| Compare FLImaging::CResult object. | |
| bool | Equal (const EResult eResult) |
| Compare CResult object. | |
| bool | IsOK () |
| Check the success. If the result is OK or PartialOK, it returns true. otherwise, it returns false. | |
| bool | IsStrictOK () |
| Check the success. If the result is OK, it returns true. otherwise, it returns false. | |
| bool | IsFail () |
| Check the failure. If the result is not OK or PartialOK, it returns true. otherwise, it returns false. | |
| bool | IsStrictFail () |
| Check the failure. If the result is not OK, it returns true. otherwise, it returns false. | |
| int | GetResultCode () |
| Returns the result code. | |
| System::String ^ | GetString () |
| Get the result string. | |
| const EResult | GetResult () |
| Result return enum. | |
Static Public Member Functions | |
| static | operator const EResult (CResult^ res) |
| Cast operator. | |
| static bool | operator== (CResult^ br1, CResult^ br2) |
| Comparison operator. | |
| static bool | operator!= (CResult^ br1, CResult^ br2) |
| Comparison operator. | |
FLImaging module execution result object.
| FLImagingCLR::CResult::CResult | ( | const FLImaging::CResult & | res | ) |
| FLImagingCLR::CResult::CResult | ( | const EResult | eResult | ) |
| bool FLImagingCLR::CResult::Assign | ( | const EResult | eResult | ) |
Assign CResult object.
| [in] | eResult | Result enum |
| bool | succeed true failed false |
| bool FLImagingCLR::CResult::Assign | ( | const FLImaging::CResult & | res | ) |
Assign FLImaging::CResult object.
| [in] | res | FLImaging::CResult object |
| bool | succeed true failed false |
| bool FLImagingCLR::CResult::Equal | ( | const EResult | eResult | ) |
Compare CResult object.
| [in] | eResult | Result enum |
| bool | Equal true Not equal false |
| bool FLImagingCLR::CResult::Equal | ( | const FLImaging::CResult & | res | ) |
Compare FLImaging::CResult object.
| [in] | res | FLImaging::CResult object. |
| bool | Equal true Not equal false |
| const EResult FLImagingCLR::CResult::GetResult | ( | ) |
| int FLImagingCLR::CResult::GetResultCode | ( | ) |
Returns the result code.
| int | Result Code value |
| System::String ^ FLImagingCLR::CResult::GetString | ( | ) |
Get the result string.
| System::String^ | string pointer |
| bool FLImagingCLR::CResult::IsFail | ( | ) |
Check the failure. If the result is not OK or PartialOK, it returns true. otherwise, it returns false.
| bool | If the result is not OK or PartialOK, it returns true. otherwise, it returns false. |
| bool FLImagingCLR::CResult::IsOK | ( | ) |
Check the success. If the result is OK or PartialOK, it returns true. otherwise, it returns false.
| bool | If the result is OK or PartialOK, it returns true. otherwise, it returns false. |
| bool FLImagingCLR::CResult::IsStrictFail | ( | ) |
Check the failure. If the result is not OK, it returns true. otherwise, it returns false.
| bool | If the result is not OK, it returns true. otherwise, it returns false. |
| bool FLImagingCLR::CResult::IsStrictOK | ( | ) |
Check the success. If the result is OK, it returns true. otherwise, it returns false.
| bool | If the result is OK, it returns true. otherwise, it returns false. |
Cast operator.
| [in] | res | CResult object |
| FLImagingCLR::EResult | Result enum |
| const CResult ^ FLImagingCLR::CResult::operator= | ( | const FLImaging::CResult & | res | ) |
Assign operator.
| [in] | res | Input instance |
| FLImagingCLR::CResult^ | CResult |
Assign operator.
| [in] | eResult | Result enum |
| FLImagingCLR::CResult^ | CResult |