level = CheckButton:GetFrameLevel()
|
Sets the level at which the frame is layered relative to others in its strata.
|
fontstring = CheckButton:GetFontString()
|
Returns the `FontString` object used for the button's label text.
|
scale = CheckButton:GetEffectiveScale()
|
Returns the overall scale factor of the frame.
|
depth = CheckButton:GetEffectiveDepth()
|
Returns the overall 3D depth of the frame (for stereoscopic 3D configurations)
|
alpha = CheckButton:GetEffectiveAlpha()
|
Returns the overall opacity of the frame.
|
CheckButton:GetDontSavePosition()
|
Функция еще не задокументированна.
|
texture = CheckButton:GetDisabledTexture()
|
Returns the texture used when the button is disabled.
|
font = CheckButton:GetDisabledFontObject()
|
Returns the font object used for the button's disabled state.
|
texture = CheckButton:GetDisabledCheckedTexture()
|
Returns the texture used when the button is disabled and checked.
|
depth = CheckButton:GetDepth()
|
Returns the 3D depth of the frame (for stereoscopic 3D setups)
|
left, right, top, bottom = CheckButton:GetClampRectInsets()
|
Returns offsets from the frame's edges used when limiting user movement or resizing of the frame.
|
... = CheckButton:GetChildren()
|
Returns a list of child frames of the frame.
|
texture = CheckButton:GetCheckedTexture()
|
Returns the texture used when the button is checked.
|
enabled = CheckButton:GetChecked()
|
Returns whether the check button is checked.
|
x, y = CheckButton:GetCenter()
|
Returns the screen coordinates of the region's center.
|
state = CheckButton:GetButtonState()
|
Returns the button's current state.
|
left, bottom, width, height = CheckButton:GetBoundsRect()
|
Returns the position and dimension of the smallest area enclosing the frame and its children.
|
bottom = CheckButton:GetBottom()
|
Returns the distance from the bottom of the screen to the bottom of the region.
|
red, green, blue, alpha = CheckButton:GetBackdropColor()
|
Returns the shading color for the frame's background graphic.
|
backdrop = CheckButton:GetBackdrop()
|
Returns information about the frame's backdrop graphic.
|
value = CheckButton:GetAttribute("name")
|
Returns the value of a secure frame attribute.
|
... = CheckButton:GetAnimationGroups()
|
Returns a list of animation groups belonging to the region.
|
alpha = CheckButton:GetAlpha()
|
Returns the opacity of the region relative to its parent.
|
CheckButton:EnableMouseWheel(enable)
|
Enables or disables mouse wheel interactivity for the frame.
|
CheckButton:EnableMouse(enable)
|
Enables or disables mouse interactivity for the frame.
|
CheckButton:EnableKeyboard(enable)
|
Enables or disables keyboard interactivity for the frame.
|
CheckButton:EnableJoystick(enable)
|
Enables or disables joystick interactivity.
|
CheckButton:EnableDrawLayer("layer")
|
Allows display of all child objects of the frame on a specified graphics layer.
|
CheckButton:Enable()
|
Allows user interaction with the button.
|
CheckButton:DisableDrawLayer("layer")
|
Prevents display of all child objects of the frame on a specified graphics layer.
|
CheckButton:Disable()
|
Disallows user interaction with the button.
|
region = CheckButton:CreateTitleRegion()
|
Creates a title region for dragging the frame.
|
fontstring = CheckButton:CreateFontString(["name" [, "layer" [, "inherits"]]])
|
Creates a new [[docs/widgets/FontString`FontString`]] as a child of the frame.
|
CheckButton:Click("button", down)
|
Performs a (virtual) mouse click on the button.
|
CheckButton:ClearAllPoints()
|
Removes all anchor points from the region.
|
canChange = CheckButton:CanChangeProtectedState()
|
Returns whether protected properties of the region can be changed by non-secure scripts.
|
enabled = CheckButton:CanChangeAttribute()
|
Returns whether secure frame attributes can currently be changed.
|
CheckButton:AllowAttributeChanges()
|
Temporarily allows insecure code to modify the frame's attributes during combat.
|
Button:UnregisterEvent("event")
|
Unregisters the frame for an event.
|
Button:UnregisterAllEvents()
|
Unregisters the frame from any [[docs/eventsevents]] for which it is registered.
|
Button:UnlockHighlight()
|
Unlocks the button's highlight state.
|
Button:StopMovingOrSizing()
|
Ends movement or resizing of the frame initiated with [[docs/widgets/Frame/StartMoving`:StartMoving()`]] or [[docs/widgets/Frame/StartSizing`:StartSizing()`]]
|
Button:StopAnimating()
|
Stops any active animations involving the region or its children.
|
Button:StartSizing()
|
Begins resizing the frame via mouse movement.
|
Button:StartMoving()
|
Begins repositioning the frame via mouse movement.
|