Exemple #1
0
 internal static bool IsFalse(this Interop.SciterGraphics.GRAPHIN_RESULT result, Interop.SciterGraphics.GRAPHIN_RESULT value)
 {
     return(!result.IsTrue(value));
 }
Exemple #2
0
 internal static bool IsNotSupported(this Interop.SciterGraphics.GRAPHIN_RESULT result)
 {
     return(result.IsTrue(Interop.SciterGraphics.GRAPHIN_RESULT.GRAPHIN_NOTSUPPORTED));
 }
Exemple #3
0
 internal static bool IsBadParameter(this Interop.SciterGraphics.GRAPHIN_RESULT result)
 {
     return(result.IsTrue(Interop.SciterGraphics.GRAPHIN_RESULT.GRAPHIN_BAD_PARAM));
 }
Exemple #4
0
 internal static bool IsFailure(this Interop.SciterGraphics.GRAPHIN_RESULT result)
 {
     return(result.IsTrue(Interop.SciterGraphics.GRAPHIN_RESULT.GRAPHIN_FAILURE));
 }
Exemple #5
0
 internal static bool IsPanic(this Interop.SciterGraphics.GRAPHIN_RESULT result)
 {
     return(result.IsTrue(Interop.SciterGraphics.GRAPHIN_RESULT.GRAPHIN_PANIC));
 }
Exemple #6
0
 internal static bool IsOk(this Interop.SciterGraphics.GRAPHIN_RESULT result)
 {
     return(result.IsTrue(Interop.SciterGraphics.GRAPHIN_RESULT.GRAPHIN_OK));
 }