GraffitiSuite Docs
Docs
Popup
Loading document parsing libraries...
# Popup Class ## Compatibility ### Framework API Version | 1.0 | 2.0 | | :---: | :---: | | True | True | ### Web | 32-Bit | 64-Bit | | :---: | :---: | | True | True | ## Methods | Name | Parameters | Return Type | Description | | --- | :---: | :---: | --- | | Close | (None) | (None) | | | Constructor | content as String <br> position as GraffitiMap.Point | (None) | Creates a new instance of the class. | | Focus | (None) | (None) | | | Hide | (None) | (None) | | | Show | (None) | (None) | | | Attributes | Hidden | toJSON | | ## Properties | Name | Type | Default Value | Description | | --- | :---: | :---: | --- | | AriaLabel | String | Nil | | | Attributes | mID | String | | | Attributes | mParent | GraffitiUpdateInterface | | | Attributes | mVisible | Boolean | | | Attributes | ID | Nil | | | AutoPan | Boolean | Nil | | | Content | String | Nil | | | MaxWidth | Integer | Nil | | | MinWidth | Integer | Nil | | | PixelOffset | Xojo.Point | Nil | | | Position | GraffitiMap.Point | Nil | | | Tag | Variant | Nil | Developer storage. | | Visible | Boolean | Nil | | ## Examples ### Basic Popup ``` var popup as new GraffitiMap.Popup( "Center of the World!", new GraffitiMap.Point( 0, 0 ) ) demoMap.AddPopup( popup ) ```