Difference between revisions of "API Component"
From Flowcode Help
Jump to navigationJump to search (XML import of API documentation) |
(XML import) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | |||
| − | |||
<sidebar>API Contents</sidebar> | <sidebar>API Contents</sidebar> | ||
Component traversal functions | Component traversal functions | ||
| Line 35: | Line 33: | ||
|width="35%"|[[API Component.GetSolid|GetSolid]] | |width="35%"|[[API Component.GetSolid|GetSolid]] | ||
|Gets whether a component is checked in collision detections | |Gets whether a component is checked in collision detections | ||
| + | |- | ||
| + | |width="35%"|[[API Component.SetCompile|SetCompile]] | ||
| + | |Sets whether a component is considered for compilation or not | ||
| + | |- | ||
| + | |width="35%"|[[API Component.GetCompile|GetCompile]] | ||
| + | |Gets whether a component will be compiled or not | ||
|- | |- | ||
|width="35%"|[[API Component.GetInstance|GetInstance]] | |width="35%"|[[API Component.GetInstance|GetInstance]] | ||
Latest revision as of 15:57, 16 January 2014
<sidebar>API Contents</sidebar> Component traversal functions
Contents
Sub-classes provided for this class
| Property | Property manipulation functions |
Functions provided for this class
| SetInteractive | Sets whether a component can interact with the mouse |
| GetInteractive | Gets whether a component can interact with the mouse |
| SetVisible | Sets whether a component can be seen on the panel |
| GetVisible | Gets whether a component can be seen on the panel |
| SetSolid | Sets whether a component is checked in collision detections |
| GetSolid | Gets whether a component is checked in collision detections |
| SetCompile | Sets whether a component is considered for compilation or not |
| GetCompile | Gets whether a component will be compiled or not |
| GetInstance | Gets the type-instance of the component, >= 1 is valid |
| FindChild | Finds a named object that is part of the component |
| GetParent | Gets the owner of the components handle |
| GetNext | Gets the next (younger) sibling of the components handle |
| GetLast | Gets the previous (elder) sibling of the components handle |
| GetChildHead | Gets the first (eldest) child of the component |
| GetChildTail | Gets the last (youngest) child of the component |
| GetOriginal | Gets the original definition of the component, returns Current if no original copy |
| Clone | Clones an existing object to another position on the panel |
| Delete | Deletes an existing object, removing it from the panel |
Examples
No additional examples