CheckButton:SetHitRectInsets(left, right, top, bottom)
|
Sets the insets from the frame's edges which determine its mouse-interactable area.
|
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:SetDontSavePosition()
|
Функция еще не задокументированна.
|
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: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:RegisterForDrag(...)
|
Registers the frame for dragging.
|
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.
|
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.
|
enabled = CheckButton:IsResizable()
|
Returns whether the frame can be resized by the user.
|
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: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)
|
region = CheckButton:GetTitleRegion()
|
Returns the frame's TitleRegion object.
|
scale = CheckButton:GetScale()
|
Returns the frame's scale factor.
|
... = CheckButton:GetRegions()
|
Returns a list of non-Frame child regions belonging to the frame.
|
numRegions = CheckButton:GetNumRegions()
|
Returns the number of non-Frame child regions belonging to the frame.
|
numChildren = CheckButton:GetNumChildren()
|
Returns the number of child frames belonging to the frame.
|
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.
|
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.
|
strata = CheckButton:GetFrameStrata()
|
Returns the general layering strata of the frame.
|
level = CheckButton:GetFrameLevel()
|
Sets the level at which the frame is layered relative to others in its strata.
|
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()
|
Функция еще не задокументированна.
|
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.
|
left, bottom, width, height = CheckButton:GetBoundsRect()
|
Returns the position and dimension of the smallest area enclosing the frame and its children.
|
red, green, blue, alpha = CheckButton:GetBackdropColor()
|
Returns the shading color for the frame's background graphic.
|