CheckButton:SetResizable(enable)
|
Sets whether the frame can be resized by the user.
|
CheckButton:SetPushedTextOffset(x, y)
|
Sets the offset for moving the button's label text when pushed.
|
CheckButton:SetNormalFontObject(font)
|
Sets the font object used for the button's normal state.
|
CheckButton:SetMovable(enable)
|
Sets whether the frame can be moved by the user.
|
CheckButton:SetMotionScriptsWhileDisabled(enabled)
|
Sets whether the button should fire [[docs/scripts/OnEnterOnEnter]]/[[docs/scripts/OnLeaveOnLeave]] events while disabled.
|
CheckButton:SetMinResize(minWidth, minHeight)
|
Sets the minimum size of the frame for user resizing.
|
CheckButton:SetMaxResize(maxWidth, maxHeight)
|
Sets the maximum size of the frame for user resizing.
|
CheckButton:SetID(id)
|
Sets a numeric identifier for the frame.
|
CheckButton:SetHitRectInsets(left, right, top, bottom)
|
Sets the insets from the frame's edges which determine its mouse-interactable area.
|
CheckButton:SetHighlightFontObject(font)
|
Sets the font object used when the button is highlighted.
|
CheckButton:SetFrameStrata("strata")
|
Sets the general layering strata of the frame.
|
CheckButton:SetFrameLevel(level)
|
Sets the level at which the frame is layered relative to others in its strata.
|
CheckButton:SetFormattedText("formatString", ...)
|
Sets the button's label text using format specifiers.
|
CheckButton:SetFontString(fontstring)
|
Sets the `FontString` object used for the button's label text.
|
CheckButton:SetDontSavePosition()
|
Функция еще не задокументированна.
|
CheckButton:SetDisabledFontObject(font)
|
Sets the font object used for the button's disabled state.
|
CheckButton:SetDepth(depth)
|
Sets the 3D depth of the frame (for stereoscopic 3D configurations)
|
CheckButton:SetClampedToScreen(enable)
|
Sets whether the frame's boundaries should be limited to those of the screen.
|
CheckButton:SetClampRectInsets(left, right, top, bottom)
|
Sets offsets from the frame's edges used when limiting user movement or resizing of the frame.
|
CheckButton:SetChecked(enable)
|
Sets whether the check button is checked.
|
CheckButton:SetBackdropColor(red, green, blue [, alpha])
|
Sets a shading color for the frame's background graphic.
|
CheckButton:SetBackdrop(backdrop)
|
Sets a backdrop graphic for the frame.
|
CheckButton:SetAlpha(alpha)
|
Sets the opacity of the region relative to its parent.
|
CheckButton:RegisterForDrag(...)
|
Registers the frame for dragging.
|
CheckButton:RegisterForClicks(...)
|
Registers a button to receive mouse clicks.
|
CheckButton:RegisterEvent("event")
|
Registers the frame for an [[docs/eventsevent]]
|
CheckButton:RegisterAllEvents()
|
Registers the frame for all events.
|
CheckButton:Raise()
|
Increases the frame's frame level above all other frames in its strata.
|
CheckButton:Lower()
|
Reduces the frame's frame level below all other frames in its strata.
|
CheckButton:LockHighlight()
|
Locks the button in its highlight state.
|
visible = CheckButton:IsVisible()
|
Returns whether the region is visible.
|
enabled = CheckButton:IsUserPlaced()
|
Returns whether the frame is flagged for automatic saving and restoration of position and dimensions.
|
enabled = CheckButton:IsToplevel()
|
Returns whether the frame is automatically raised to the front when clicked.
|
shown = CheckButton:IsShown()
|
Returns whether the region is shown.
|
enabled = CheckButton:IsResizable()
|
Returns whether the frame can be resized by the user.
|