This commit is contained in:
2025-05-04 23:56:53 +02:00
parent 3f65afd97a
commit d1c7f1ee31
3 changed files with 143 additions and 1 deletions

View File

@@ -97,6 +97,14 @@ Region = {
--- local width = myRegion:GetWidth()
GetWidth = function(self) end,
--- Get the height and width of the frame.
--- @param self Region
--- @return number width The width of the frame.
--- @return number height The height of the frame.
--- @example
--- local width, height = myRegion:GetSize()
GetSize = function(self) end,
--- Set this object to hidden (it and all of its children will disappear).
--- @param self Region
--- @example