About: USERAPI GetQuadrant   Sponge Permalink

An Entity of Type : owl:Thing, within Data Space : 134.155.108.49:8890 associated with source dataset(s)

Quick lookup function to find what section of the screen the frame is in. Helpful for anchoring the frame or a tooltip relative to location. Uses the center of the frame, so it will return the quadrant that the majority of the frame lies in if the frame is positioned near the center of the screen. Returns back the quad, horizontal half ("LEFT" or "RIGHT") and the vertical half ("TOP" or "BOTTOM").

AttributesValues
rdfs:label
  • USERAPI GetQuadrant
rdfs:comment
  • Quick lookup function to find what section of the screen the frame is in. Helpful for anchoring the frame or a tooltip relative to location. Uses the center of the frame, so it will return the quadrant that the majority of the frame lies in if the frame is positioned near the center of the screen. Returns back the quad, horizontal half ("LEFT" or "RIGHT") and the vertical half ("TOP" or "BOTTOM").
dbkwik:wowwiki/pro...iPageUsesTemplate
abstract
  • Quick lookup function to find what section of the screen the frame is in. Helpful for anchoring the frame or a tooltip relative to location. Uses the center of the frame, so it will return the quadrant that the majority of the frame lies in if the frame is positioned near the center of the screen. Returns back the quad, horizontal half ("LEFT" or "RIGHT") and the vertical half ("TOP" or "BOTTOM"). local function GetQuadrant(frame) local x,y = frame:GetCenter() local hhalf = (x > UIParent:GetWidth()/2) and "RIGHT" or "LEFT" local vhalf = (y > UIParent:GetHeight()/2) and "TOP" or "BOTTOM" return vhalf..hhalf, vhalf, hhalf end
Alternative Linked Data Views: ODE     Raw Data in: CXML | CSV | RDF ( N-Triples N3/Turtle JSON XML ) | OData ( Atom JSON ) | Microdata ( JSON HTML) | JSON-LD    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 07.20.3217, on Linux (x86_64-pc-linux-gnu), Standard Edition
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2012 OpenLink Software