Core Function isVarGUIObject

From Sputnik Wiki
(Difference between revisions)
Jump to: navigation, search
(type)
(Return Value)
Line 34: Line 34:
 
=== Return Value ===
 
=== Return Value ===
  
Success: Returns 1.
+
Success: Returns true.
  
Failure: Returns 0.
+
Failure: Returns false.
  
 
=== Remarks ===
 
=== Remarks ===

Revision as of 10:41, 29 August 2013

isVarGUIObject( $variable, <type> )

Contents

Description

Check if a variable's object type is a GUI Object (Buttons etc).

Parameters

variable

The variable to check.

type

Optoinal; The type to check against valid types are:

[TYPE]			[DETAILS]
"button"
"textbox"
"datagrid"
"label"
"checkbox"
"tabsheet"
"tabpage"
"groupbox"
"radiobutton"
"progressbar"

Default just checks if it IS an object type or not.

Return Value

Success: Returns true.

Failure: Returns false.

Remarks

None.

Example

$var1 = "check me";
println( "Is it?: " . isVarGUIObject($var1) );
println( "Is it?: " . isVarGUIObject($var1, "groupbox") );
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox