ProgressBar Methods

GeonBit.UI

ProgressBar Methods

The ProgressBar type exposes the following members.

Methods
  NameDescription
Public methodAddChild
Add a child entity.
(Inherited from Entity.)
Public methodBringToFront
Bring this entity to be on front (inside its parent).
(Inherited from Entity.)
Public methodCalcDestRect
Calculate and return the destination rectangle, eg the space this entity is rendered on.
(Inherited from Entity.)
Public methodCalcInternalRect
Calculate and return the internal destination rectangle (note: this relay on the dest rect having a valid value first).
(Inherited from Entity.)
Public methodClearChildren
Remove all children entities.
(Inherited from Entity.)
Public methodDraw
Draw this entity and its children.
(Inherited from Entity.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodFindT(String, Boolean)
Find and return first occurance of a child entity with a given identifier and specific type.
(Inherited from Entity.)
Public methodGetActiveStyle
Return stylesheet property for current entity state (or default if undefined for state).
(Inherited from Entity.)
Public methodGetActualDestRect
Return actual destination rectangle. This can be override and implemented by things like Paragraph, where the actual destination rect is based on text content, font and word-wrap.
(Inherited from Entity.)
Public methodGetChildren
Return all children of this entity.
(Inherited from Entity.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetRelativeOffset
Return the relative offset, in pixels, from parent top-left corner.
(Inherited from Entity.)
Public methodGetStepSize
Get the size of a single step.
(Inherited from Slider.)
Public methodGetStyleProperty
Return stylesheet property for a given state.
(Inherited from Entity.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValueAsPercent
Return current value as a percent between min and max.
(Inherited from Slider.)
Public methodIsDeepChildOf
Check if this entity is a descendant of another entity. This goes up all the way to root.
(Inherited from Entity.)
Public methodIsDisabled
Return if this entity is currently disabled, due to self or one of the parents / grandparents being disabled.
(Inherited from Entity.)
Public methodIsInsideEntity
Test if a given point is inside entity's boundaries.
(Inherited from Entity.)
Public methodIsLocked
Return if this entity is currently locked, due to self or one of the parents / grandparents being locked.
(Inherited from Entity.)
Public methodIsNaturallyInteractable
Is the slider a natrually-interactable entity.
(Inherited from Slider.)
Public methodIsVisible
Return if this entity is currently visible, eg this and all its parents and grandparents are visible.
(Inherited from Entity.)
Public methodIterateChildren
Iterate over children and call 'callback' for every direct child of this entity.
(Inherited from Entity.)
Public methodMarkAsDirty
Mark that this entity boundaries or style changed and it need to recalculate cached destination rect and other things.
(Inherited from Entity.)
Public methodPropagateEventsTo
Propagate all events trigger by this entity to a given other entity. For example, if "OnClick" will be called on this entity, it will trigger OnClick on 'other' as well.
(Inherited from Entity.)
Public methodRemoveChild
Remove child entity.
(Inherited from Entity.)
Public methodRemoveFromParent
Remove this entity from its parent.
(Inherited from Entity.)
Public methodSetAnchor
Set the anchor of this entity.
(Inherited from Entity.)
Public methodSetOffset
Set the offset of this entity.
(Inherited from Entity.)
Public methodSetPosition
Set the position and anchor of this entity.
(Inherited from Entity.)
Public methodSetStyleProperty
Set a stylesheet property.
(Inherited from Entity.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUpdate
Called every frame to update entity state and call events.
(Inherited from Entity.)
Public methodUpdateDestinationRects
Update dest rect and internal dest rect. This is called internally whenever a change is made to the entity or its parent.
(Inherited from Entity.)
Public methodUpdateDestinationRectsIfDirty
Update dest rect and internal dest rect, but only if needed (eg if something changed since last update).
(Inherited from Entity.)
Public methodUpdateStyle
Update the entire stylesheet from a different stylesheet.
(Inherited from Entity.)
Top
See Also