|
GLG Toolkit, C# Class Library
Version 4.6
|
Functions | |
| virtual bool | AddObjectAt (GlgObject container, Object object, int index) |
| Adds an object at the specified position inside the container. More... | |
| virtual bool | AddObjectToBottom (GlgObject container, Object object) |
| Adds an object at the end of the container. More... | |
| virtual bool | AddObjectToTop (GlgObject container, Object object) |
| Adds an object at the end of the container. More... | |
| virtual GlgObject | CloneObject (GlgObject glg_object, GlgCloneType clone_type) |
| Creates a specialized copy (clone) of an object. More... | |
| virtual GlgObject | CopyObject (GlgObject glg_object) |
| Creates a copy of the object. More... | |
| virtual bool | DeleteBottomObject (GlgObject container) |
| Deletes an object from the bottom of the container. More... | |
| virtual bool | DeleteObject (GlgObject container, Object object) |
| Finds and deletes an object from the container. More... | |
| virtual bool | DeleteObjectAt (GlgObject container, int index) |
| Deletes an object from the specified position in the container. More... | |
| virtual bool | DeleteTopObject (GlgObject container) |
| Deletes an object from the beginning of the container. More... | |
| virtual bool | SetResourceObject (GlgObject glg_object, String resource_name, GlgObject value) |
| Replaces a resource object inside the object the method is invoked on. More... | |
| virtual bool | SetXform (GlgObject glg_object, GlgObject xform) |
| Adds or deletes transformations attached to the object. More... | |
|
virtual |
Adds an object at the specified position inside the container.
| container | A container object. |
| object | The object to be added. |
| index | The position in a container. |
This method invokes the corresponding method of the GlgObject class. See AddObjectAt for more information.
|
virtual |
Adds an object at the end of the container.
| container | A container object. |
| object | The object to be added. |
This method invokes the corresponding method of the GlgObject class. See AddObjectToBottom for more information.
|
virtual |
Adds an object at the end of the container.
| container | A container object. |
| object | The object to be added. |
This method invokes the corresponding method of the GlgObject class. See AddObjectToTop for more information.
|
virtual |
Creates a specialized copy (clone) of an object.
| clone_type | The type of cloning to perform, see CloneObject. |
| glg_object | The object to be copied. |
This method invokes the corresponding method of the GlgObject class. See CloneObject for more information.
Creates a copy of the object.
| glg_object | The object to be copied. |
This method invokes the corresponding method of the GlgObject class. See CopyObject for more information.
|
virtual |
Deletes an object from the bottom of the container.
| container | A container object. |
This method invokes the corresponding method of the GlgObject class. See DeleteBottomObject for more information.
|
virtual |
Finds and deletes an object from the container.
| container | A container object. |
| object | An object to be deleted. |
This method invokes the corresponding method of the GlgObject class.
|
virtual |
|
virtual |
|
virtual |
Replaces a resource object inside the object the method is invoked on.
| glg_object | The object to replace resources of. |
| resource_name | A default attribute name of a resource that is being set or replaced. |
| value | A new resource object. |
This method invokes the corresponding method of the GlgObject class. See SetResourceObject for more information.
Adds or deletes transformations attached to the object.
| glg_object | The object whose transformation will be added or deleted. |
| xform | A new transformation object to be attached to the object the method is invoked on, or null to delete the currently attached transformation. |
This method invokes the corresponding method of the GlgObject class. See SetXform for more information.