isType = CheckButton:IsObjectType("type")
|
Returns whether the object belongs to a given widget type.
|
movable = CheckButton:IsMovable()
|
Returns whether the frame can be moved by the user.
|
enabled = CheckButton:IsMouseWheelEnabled()
|
Returns whether mouse wheel interactivity is enabled for the frame.
|
enabled = CheckButton:IsMouseEnabled()
|
Returns whether mouse interactivity is enabled for the frame.
|
enabled = CheckButton:IsKeyboardEnabled()
|
Returns whether keyboard interactivity is enabled for the frame.
|
enabled = CheckButton:IsJoystickEnabled()
|
Returns whether joystick interactivity is enabled for the frame.
|
enabled = CheckButton:IsIgnoringDepth()
|
Returns whether the frame's depth property is ignored (for stereoscopic 3D setups)
|
registered = CheckButton:IsEventRegistered("event")
|
Returns whether the frame is registered for a given [[docs/eventsevent]]
|
enabled = CheckButton:IsEnabled()
|
Returns whether user interaction with the button is allowed.
|
isDragging = CheckButton:IsDragging()
|
Returns whether the region is currently being dragged.
|
enabled = CheckButton:IsClampedToScreen()
|
Returns whether the frame's boundaries are limited to those of the screen.
|
CheckButton:IgnoreDepth(enable)
|
Sets whether the frame's depth property is ignored (for stereoscopic 3D setups)
|
hasScript = CheckButton:HasScript("scriptType")
|
Returns whether the widget supports a script handler.
|
width = CheckButton:GetWidth()
|
Returns the width of the region.
|
top = CheckButton:GetTop()
|
Returns the distance from the bottom of the screen to the top of the region.
|
region = CheckButton:GetTitleRegion()
|
Returns the frame's TitleRegion object.
|
width = CheckButton:GetTextWidth()
|
Returns the width of the button's text label.
|
height = CheckButton:GetTextHeight()
|
Returns the height of the button's text label.
|
text = CheckButton:GetText()
|
Returns the text of the button's label.
|
width, height = CheckButton:GetSize()
|
Returns the width and height of the region.
|
handler = CheckButton:GetScript("scriptType")
|
Returns the widget's handler function for a script.
|
scale = CheckButton:GetScale()
|
Returns the frame's scale factor.
|
right = CheckButton:GetRight()
|
Returns the distance from the left edge of the screen to the right edge of the region.
|
... = CheckButton:GetRegions()
|
Returns a list of non-Frame child regions belonging to the frame.
|
left, bottom, width, height = CheckButton:GetRect()
|
Returns the position and dimensions of the region.
|
texture = CheckButton:GetPushedTexture()
|
Returns the texture used when the button is pushed.
|
x, y = CheckButton:GetPushedTextOffset()
|
Returns the offset for moving the button's label text when pushed.
|
parent = CheckButton:GetParent()
|
Returns the object's parent object.
|
type = CheckButton:GetObjectType()
|
Returns the object's widget type.
|
numRegions = CheckButton:GetNumRegions()
|
Returns the number of non-Frame child regions belonging to the frame.
|
numPoints = CheckButton:GetNumPoints()
|
Returns the number of anchor points defined for the region.
|
numChildren = CheckButton:GetNumChildren()
|
Returns the number of child frames belonging to the frame.
|
texture = CheckButton:GetNormalTexture()
|
Returns the texture used for the button's normal state.
|
font = CheckButton:GetNormalFontObject()
|
Returns the font object used for the button's normal state.
|
name = CheckButton:GetName()
|
Returns the widget object's name.
|
isEnabled = CheckButton:GetMotionScriptsWhileDisabled()
|
Determines whether [[docs/scripts/OnEnterOnEnter]]/[[docs/scripts/OnLeaveOnLeave]] scripts will fire while the button is disabled.
|
minWidth, minHeight = CheckButton:GetMinResize()
|
Returns the minimum size of the frame for user resizing.
|
maxWidth, maxHeight = CheckButton:GetMaxResize()
|
Returns the maximum size of the frame for user resizing.
|
left = CheckButton:GetLeft()
|
Returns the distance from the left edge of the screen to the left edge of the region.
|
id = CheckButton:GetID()
|
Returns the frame's numeric identifier.
|
left, right, top, bottom = CheckButton:GetHitRectInsets()
|
Returns the insets from the frame's edges which determine its mouse-interactable area.
|
texture = CheckButton:GetHighlightTexture()
|
Returns the texture used when the button is highlighted.
|
font = CheckButton:GetHighlightFontObject()
|
Returns the font object used when the button is highlighted.
|
height = CheckButton:GetHeight()
|
Returns the height of the region.
|
strata = CheckButton:GetFrameStrata()
|
Returns the general layering strata of the frame.
|