This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
thinkgeo.mapsuite.mvcedition.cloudpopup [2015/08/20 03:08] 127.0.0.1 external edit |
thinkgeo.mapsuite.mvcedition.cloudpopup [2017/03/16 21:59] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== ThinkGeo.MapSuite.MvcEdition.CloudPopup ====== | ====== ThinkGeo.MapSuite.MvcEdition.CloudPopup ====== | ||
+ | {{section>upgrade_map_suite_to_10.0}} | ||
- | |||
- | <!-- Class --> | ||
Represents the popups that appear in a cloud (a.k.a. balloon) shape. | Represents the popups that appear in a cloud (a.k.a. balloon) shape. | ||
- | === Remarks === | ||
- | When you add a <strong>CloudPopup</strong> object to map, a cloud-shaped popup will be created at the client side. | ||
- | |||
- | You can put any HTML string in the <strong>ContentHtml</strong> property, which will be parsed and displayed in the popup. | ||
===== Inheritance Hierarchy ===== | ===== Inheritance Hierarchy ===== | ||
- | *System.Object | + | *System.Object |
- | **[[ThinkGeo.MapSuite.MvcEdition.Popup]] | + | *ThinkGeo.MapSuite.MvcEdition.Popup |
- | ***[[ThinkGeo.MapSuite.MvcEdition.CloudPopup]] | + | ***ThinkGeo.MapSuite.MvcEdition.CloudPopup** |
===== Members Summary ===== | ===== Members Summary ===== | ||
==== Public Constructors ==== | ==== Public Constructors ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} CloudPopup() ** |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#CloudPopup()|CloudPopup]] | | | Initialize an instance of the CloudPopup class. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#CloudPopup(String)|CloudPopup]] | String | | Initialize an instance of the CloudPopup class with an Id string. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#CloudPopup(String, PointShape)|CloudPopup]] | String, [[ThinkGeo.MapSuite.Core.PointShape|PointShape]] | | Initialize an instance of the CloudPopup class with an Id string and the position. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#CloudPopup(String, PointShape, String)|CloudPopup]] | String, [[ThinkGeo.MapSuite.Core.PointShape|PointShape]], String | | Initialize an instance of the CloudPopup class with an Id string, position and the content of the popup. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#CloudPopup(String, PointShape, String, Int32, Int32)|CloudPopup]] | String, [[ThinkGeo.MapSuite.Core.PointShape|PointShape]], String, Int32, Int32 | | Initialize an instance of the CloudPopup class with Id string, position, popup content and size. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#CloudPopup(String, PointShape, String, Int32, Int32, Boolean)|CloudPopup]] | String, [[ThinkGeo.MapSuite.Core.PointShape|PointShape]], String, Int32, Int32, Boolean | | Initialize an instance of the CloudPopup class with an Id string, position, popup content, popup size and a boolean value that determines whether to pan the map if necessary to show the full popup. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#CloudPopup(String, PointShape, String, Int32, Int32, Boolean, Boolean)|CloudPopup]] | String, [[ThinkGeo.MapSuite.Core.PointShape|PointShape]], String, Int32, Int32, Boolean, Boolean | | Initialize an instance of the CloudPopup class with an Id string, position, popup's content, popup size, a boolean value for whether to pan the map to show the popup, and a boolean value for whether to have a close button on the popup. | | + | |
- | ==== Protected Constructors ==== | + | * //Initialize an instance of the CloudPopup class.// |
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | == Remarks == |
+ | * //N/A// | ||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} CloudPopup(String) ** | ||
- | ==== Public Methods ==== | + | * //Initialize an instance of the CloudPopup class with an Id string.// |
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | == Remarks == |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#CloneShallow()|CloneShallow]] | | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Creates a shallow copy of the current popup object. | | + | * //N/A// |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#Equals(Object)|Equals]] | Object | Object | | | + | == Parameters == |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#FromJson(String)|FromJson]] | String | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | | | + | * //id// |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetHashCode()|GetHashCode]] | | Object | | | + | * Type:String |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetType()|GetType]] | | Object | | | + | * Description:The identifier by which you can find the popup. |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#ToJson()|ToJson]] | | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Returns a JSON string which contains the popup's information and is used to create the popup at the client side. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#ToString()|ToString]] | | Object | | | + | |
- | ==== Protected Methods ==== | + | <div newline></div> |
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} CloudPopup(String,PointShape) ** |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#Finalize()|Finalize]] | | Object | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#MemberwiseClone()|MemberwiseClone]] | | Object | | | + | |
- | ==== Public Properties ==== | + | * //Initialize an instance of the CloudPopup class with an Id string and the position.// |
- | ^ Name ^ Return ^ DeclaringType ^ Summary ^ | + | == Remarks == |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#AutoPan|AutoPan]] | Boolean | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets or sets a value that indicates whether to pan the map to display the entire popup if the popup is not fully displayed. | | + | * //N/A// |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#AutoSize|AutoSize]] | Boolean | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets or sets a value that indicates whether the popup is automatically resized to fit its contents. | | + | == Parameters == |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#ContentHtml|ContentHtml]] | String | | Gets or sets the content HTML of the popup window. | | + | * //id// |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#HasCloseButton|HasCloseButton]] | Boolean | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets or sets a value that indicates whether the popup window has a close button in the upper right corner. | | + | * Type:String |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#Height|Height]] | Int32 | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets or sets the height of the popup. | | + | * Description:The identifier by which you can find the popup. |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#Id|Id]] | String | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets the identifier by which you can find the popup. | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#IsVisible|IsVisible]] | Boolean | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets or sets a value that indicates whether the popup is visible on the map. | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#OffsetXInPixels|OffsetXInPixels]] | Int32 | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets or sets the popup's pixel offset in X direction. | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#OffsetYInPixels|OffsetYInPixels]] | Int32 | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets or sets the popup's pixel offset in Y direction. | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#Opacity|Opacity]] | Single | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets or sets the opacity level of the popup. | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#Position|Position]] | [[ThinkGeo.MapSuite.Core.PointShape|PointShape]] | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets or sets a point shape in world coordinates that represents the position of the popup. | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#Width|Width]] | Int32 | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] | Gets or sets the width of the popup. | | + | |
- | ==== Protected Properties ==== | + | * //position// |
- | ^ Name ^ Return ^ DeclaringType ^ Summary ^ | + | * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] |
- | | {{wiki:ProtectedProperty.gif|Protected Property}}[[#PopupType|PopupType]] | String | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]](overriden) | Gets a string that represents the type of the Popup object. | | + | * Description:A point shape in world coordinates that indicates the position of the popup. |
- | ==== Public Events ==== | + | <div newline></div> |
- | ^ Name ^ Event Arguments ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} CloudPopup(String,PointShape,String) ** |
- | ===== Public Constructors ===== | + | * //Initialize an instance of the CloudPopup class with an Id string, position and the content of the popup.// |
- | ==== CloudPopup() ==== | + | == Remarks == |
- | Initialize an instance of the CloudPopup class. | + | * //N/A// |
- | === Overloads === | + | == Parameters == |
- | Initialize an instance of the CloudPopup class. | + | * //id// |
- | === Parameters === | + | * Type:String |
- | ^ Name ^ Type ^ Description ^ | + | * Description:The identifier by which you can find the popup. |
- | [[#Public Constructors|Go Back]] | + | * //position// |
- | ==== CloudPopup(String) ==== | + | * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] |
- | Initialize an instance of the CloudPopup class with an Id string. | + | * Description:A point shape in world coordinates that indicates the position of the popup. |
- | === Overloads === | + | |
- | Initialize an instance of the CloudPopup class. | + | |
- | === Parameters === | + | |
- | ^ Name ^ Type ^ Description ^ | + | |
- | | id | String<!-- System.String --> | The identifier by which you can find the popup. | | + | |
- | [[#Public Constructors|Go Back]] | + | * //contentHtml// |
- | ==== CloudPopup(String, PointShape) ==== | + | * Type:String |
- | Initialize an instance of the CloudPopup class with an Id string and the position. | + | * Description:An HTML string rendered as the popup content. |
- | === Overloads === | + | |
- | Initialize an instance of the CloudPopup class. | + | |
- | === Parameters === | + | |
- | ^ Name ^ Type ^ Description ^ | + | |
- | | id | String<!-- System.String --> | The identifier by which you can find the popup. | | + | |
- | | position | [[ThinkGeo.MapSuite.Core.PointShape|PointShape]]<!-- ThinkGeo.MapSuite.Core.PointShape --> | A point shape in world coordinates that indicates the position of the popup. | | + | |
- | [[#Public Constructors|Go Back]] | + | <div newline></div> |
- | ==== CloudPopup(String, PointShape, String) ==== | + | ** {{wiki:PublicMethod.gif|}} CloudPopup(String,PointShape,String,Int32,Int32) ** |
- | Initialize an instance of the CloudPopup class with an Id string, position and the content of the popup. | + | |
- | === Overloads === | + | |
- | Initialize an instance of the CloudPopup class. | + | |
- | === Parameters === | + | |
- | ^ Name ^ Type ^ Description ^ | + | |
- | | id | String<!-- System.String --> | The identifier by which you can find the popup. | | + | |
- | | position | [[ThinkGeo.MapSuite.Core.PointShape|PointShape]]<!-- ThinkGeo.MapSuite.Core.PointShape --> | A point shape in world coordinates that indicates the position of the popup. | | + | |
- | | contentHtml | String<!-- System.String --> | An HTML string rendered as the popup content. | | + | |
- | [[#Public Constructors|Go Back]] | + | * //Initialize an instance of the CloudPopup class with Id string, position, popup content and size.// |
- | ==== CloudPopup(String, PointShape, String, Int32, Int32) ==== | + | == Remarks == |
- | Initialize an instance of the CloudPopup class with Id string, position, popup content and size. | + | * //N/A// |
- | === Overloads === | + | == Parameters == |
- | Initialize an instance of the CloudPopup class. | + | * //id// |
- | === Parameters === | + | * Type:String |
- | ^ Name ^ Type ^ Description ^ | + | * Description:The identifier by which you can find the popup. |
- | | id | String<!-- System.String --> | The identifier by which you can find the popup. | | + | |
- | | position | [[ThinkGeo.MapSuite.Core.PointShape|PointShape]]<!-- ThinkGeo.MapSuite.Core.PointShape --> | A point shape in world coordinates that indicates the position of the popup. | | + | |
- | | contentHtml | String<!-- System.String --> | An HTML string rendered as the popup content. | | + | |
- | | width | Int32<!-- System.Int32 --> | An int value that indicates the popup's width. | | + | |
- | | height | Int32<!-- System.Int32 --> | An int value that indicates the popup's height. | | + | |
- | [[#Public Constructors|Go Back]] | + | * //position// |
- | ==== CloudPopup(String, PointShape, String, Int32, Int32, Boolean) ==== | + | * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] |
- | Initialize an instance of the CloudPopup class with an Id string, position, popup content, popup size and a boolean value that determines whether to pan the map if necessary to show the full popup. | + | * Description:A point shape in world coordinates that indicates the position of the popup. |
- | === Overloads === | + | |
- | Initialize an instance of the CloudPopup class. | + | |
- | === Parameters === | + | |
- | ^ Name ^ Type ^ Description ^ | + | |
- | | id | String<!-- System.String --> | The identifier by which you can find the popup. | | + | |
- | | position | [[ThinkGeo.MapSuite.Core.PointShape|PointShape]]<!-- ThinkGeo.MapSuite.Core.PointShape --> | A point shape in world coordinates that indicates the position of the popup. | | + | |
- | | contentHtml | String<!-- System.String --> | An HTML string rendered as the popup content. | | + | |
- | | width | Int32<!-- System.Int32 --> | An int value that indicates the popup's width. | | + | |
- | | height | Int32<!-- System.Int32 --> | An int value that indicates the popup's height. | | + | |
- | | autoPan | Boolean<!-- System.Boolean --> | A boolean value indicating whether to pan the map if necessary to show the full popup. | | + | |
- | [[#Public Constructors|Go Back]] | + | * //contentHtml// |
- | ==== CloudPopup(String, PointShape, String, Int32, Int32, Boolean, Boolean) ==== | + | * Type:String |
- | Initialize an instance of the CloudPopup class with an Id string, position, popup's content, popup size, a boolean value for whether to pan the map to show the popup, and a boolean value for whether to have a close button on the popup. | + | * Description:An HTML string rendered as the popup content. |
- | === Overloads === | + | |
- | Initialize an instance of the CloudPopup class. | + | |
- | === Parameters === | + | |
- | ^ Name ^ Type ^ Description ^ | + | |
- | | id | String<!-- System.String --> | The identifier by which you can find the popup. | | + | |
- | | position | [[ThinkGeo.MapSuite.Core.PointShape|PointShape]]<!-- ThinkGeo.MapSuite.Core.PointShape --> | A point shape in world coordinates that indicates the position of the popup. | | + | |
- | | contentHtml | String<!-- System.String --> | An HTML string rendered as the popup content. | | + | |
- | | width | Int32<!-- System.Int32 --> | An int value that indicates the popup's width. | | + | |
- | | height | Int32<!-- System.Int32 --> | An int value that indicates the popup's height. | | + | |
- | | autoPan | Boolean<!-- System.Boolean --> | A boolean value indicating whether to pan the map if necessary to show the full popup. | | + | |
- | | hasCloseButton | Boolean<!-- System.Boolean --> | A boolean value indicating whether the popup should have a close button. | | + | |
- | [[#Public Constructors|Go Back]] | + | * //width// |
- | ===== Protected Constructors ===== | + | * Type:Int32 |
- | ===== Public Methods ===== | + | * Description:An int value that indicates the popup's width. |
- | ==== CloneShallow() ==== | + | |
- | Creates a shallow copy of the current popup object. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | [[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]]<!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | | | + | |
- | === Parameters === | + | * //height// |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Int32 |
+ | * Description:An int value that indicates the popup's height. | ||
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | <div newline></div> |
- | [[#Public Methods|Go Back]] | + | ** {{wiki:PublicMethod.gif|}} CloudPopup(String,PointShape,String,Int32,Int32,Boolean) ** |
- | ==== Equals(Object) ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Boolean<!-- System.Boolean --> | | | + | |
- | === Parameters === | + | * //Initialize an instance of the CloudPopup class with an Id string, position, popup content, popup size and a boolean value that determines whether to pan the map if necessary to show the full popup.// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
- | | obj | Object<!-- System.Object --> | | | + | * //N/A// |
+ | == Parameters == | ||
+ | * //id// | ||
+ | * Type:String | ||
+ | * Description:The identifier by which you can find the popup. | ||
- | <!-- System.Object --> | + | * //position// |
- | [[#Public Methods|Go Back]] | + | * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] |
- | ==== FromJson(String) ==== | + | * Description:A point shape in world coordinates that indicates the position of the popup. |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //contentHtml// |
- | ^ Name ^ Type ^ Description ^ | + | * Type:String |
- | | jsonString | String<!-- System.String --> | | | + | * Description:An HTML string rendered as the popup content. |
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | * //width// |
- | [[#Public Methods|Go Back]] | + | * Type:Int32 |
- | ==== GetHashCode() ==== | + | * Description:An int value that indicates the popup's width. |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Int32<!-- System.Int32 --> | | | + | |
- | === Parameters === | + | * //height// |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Int32 |
+ | * Description:An int value that indicates the popup's height. | ||
- | <!-- System.Object --> | + | * //autoPan// |
- | [[#Public Methods|Go Back]] | + | * Type:Boolean |
- | ==== GetType() ==== | + | * Description:A boolean value indicating whether to pan the map if necessary to show the full popup. |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Type<!-- System.Type --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:PublicMethod.gif|}} CloudPopup(String,PointShape,String,Int32,Int32,Boolean,Boolean) ** |
- | <!-- System.Object --> | + | * //Initialize an instance of the CloudPopup class with an Id string, position, popup's content, popup size, a boolean value for whether to pan the map to show the popup, and a boolean value for whether to have a close button on the popup.// |
- | [[#Public Methods|Go Back]] | + | == Remarks == |
- | ==== ToJson() ==== | + | * //N/A// |
- | Returns a JSON string which contains the popup's information and is used to create the popup at the client side. | + | == Parameters == |
- | === Return Value === | + | * //id// |
- | ^ Return Type ^ Description ^ | + | * Type:String |
- | | String<!-- System.String --> | A string that is used to create the popup at the client side. | | + | * Description:The identifier by which you can find the popup. |
- | === Parameters === | + | * //position// |
- | ^ Name ^ Type ^ Description ^ | + | * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] |
+ | * Description:A point shape in world coordinates that indicates the position of the popup. | ||
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | * //contentHtml// |
- | [[#Public Methods|Go Back]] | + | * Type:String |
- | ==== ToString() ==== | + | * Description:An HTML string rendered as the popup content. |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | String<!-- System.String --> | | | + | |
- | === Parameters === | + | * //width// |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Int32 |
+ | * Description:An int value that indicates the popup's width. | ||
- | <!-- System.Object --> | + | * //height// |
- | [[#Public Methods|Go Back]] | + | * Type:Int32 |
- | ===== Protected Methods ===== | + | * Description:An int value that indicates the popup's height. |
- | ==== Finalize() ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //autoPan// |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Boolean |
+ | * Description:A boolean value indicating whether to pan the map if necessary to show the full popup. | ||
- | <!-- System.Object --> | + | * //hasCloseButton// |
- | [[#Protected Methods|Go Back]] | + | * Type:Boolean |
- | ==== MemberwiseClone() ==== | + | * Description:A boolean value indicating whether the popup should have a close button. |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Object<!-- System.Object --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ==== Protected Constructors ==== |
+ | ==== Public Methods ==== | ||
+ | ** {{wiki:PublicMethod.gif|}} CloneShallow() ** | ||
- | <!-- System.Object --> | + | * //N/A// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ===== Public Properties ===== | + | * //N/A// |
- | ==== AutoPan ==== | + | |
- | Gets or sets a value that indicates whether to pan the map to display the entire popup if the popup is not fully displayed. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Boolean<!-- System.Boolean --> | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | == Return Value == |
- | [[#Public Properties|Go Back]] | + | * Type:[[ThinkGeo.MapSuite.MvcEdition.Popup|Popup]] |
- | ==== AutoSize ==== | + | * Description:N/A |
- | Gets or sets a value that indicates whether the popup is automatically resized to fit its contents. | + | |
- | === Return Value === | + | == Parameters == |
- | ^ Return Type ^ | + | <div newline></div> |
- | | Boolean<!-- System.Boolean --> | | + | ** {{wiki:PublicMethod.gif|}} ToJson() ** |
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:String | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} FromJson(String) ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | * //jsonString// | ||
+ | * Type:String | ||
+ | * Description:N/A | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} ToString() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:String | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} Equals(Object) ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Boolean | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | * //obj// | ||
+ | * Type:Object | ||
+ | * Description:N/A | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} GetHashCode() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Int32 | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} GetType() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Type | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ==== Protected Methods ==== | ||
+ | ** {{wiki:ProtectedMethod.gif|}} Finalize() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Object | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ==== Public Properties ==== | ||
+ | ** {{wiki:PublicProperty.gif|}} ContentHtml ** | ||
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | ||
- | [[#Public Properties|Go Back]] | ||
- | ==== ContentHtml ==== | ||
Gets or sets the content HTML of the popup window. | Gets or sets the content HTML of the popup window. | ||
- | === Return Value === | + | == Remarks == |
- | ^ Return Type ^ | + | N/A |
- | | String<!-- System.String --> | | + | == Return Value == |
+ | * Type:String | ||
- | <!-- ThinkGeo.MapSuite.MvcEdition.CloudPopup --> | + | ** {{wiki:PublicProperty.gif|}} Id ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== HasCloseButton ==== | + | |
- | Gets or sets a value that indicates whether the popup window has a close button in the upper right corner. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Boolean<!-- System.Boolean --> | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== Height ==== | + | N/A |
- | Gets or sets the height of the popup. | + | == Return Value == |
- | === Return Value === | + | * Type:String |
- | ^ Return Type ^ | + | |
- | | Int32<!-- System.Int32 --> | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | ** {{wiki:PublicProperty.gif|}} Position ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== Id ==== | + | |
- | Gets the identifier by which you can find the popup. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | String<!-- System.String --> | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== IsVisible ==== | + | N/A |
- | Gets or sets a value that indicates whether the popup is visible on the map. | + | == Return Value == |
- | === Return Value === | + | * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] |
- | ^ Return Type ^ | + | |
- | | Boolean<!-- System.Boolean --> | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | ** {{wiki:PublicProperty.gif|}} Width ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== OffsetXInPixels ==== | + | |
- | Gets or sets the popup's pixel offset in X direction. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Int32<!-- System.Int32 --> | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== OffsetYInPixels ==== | + | N/A |
- | Gets or sets the popup's pixel offset in Y direction. | + | == Return Value == |
- | === Return Value === | + | * Type:Int32 |
- | ^ Return Type ^ | + | |
- | | Int32<!-- System.Int32 --> | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | ** {{wiki:PublicProperty.gif|}} Height ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== Opacity ==== | + | |
- | Gets or sets the opacity level of the popup. | + | |
- | === Remarks === | + | |
- | The <strong>Opacity</strong> property enables you to specify a level of transparency for the popup. When this property is set to a value less than 100 percent (1.00), the entire popup (including its content) is made more transparent. The lower the value, the more transparent it is. Setting this property to a value of 0 percent (0.00) makes the popup completely invisible. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Single<!-- System.Single --> | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== Position ==== | + | N/A |
- | Gets or sets a point shape in world coordinates that represents the position of the popup. | + | == Return Value == |
- | === Return Value === | + | * Type:Int32 |
- | ^ Return Type ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.PointShape|PointShape]]<!-- ThinkGeo.MapSuite.Core.PointShape --> | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | + | ** {{wiki:PublicProperty.gif|}} IsVisible ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== Width ==== | + | N/A |
- | Gets or sets the width of the popup. | + | == Remarks == |
- | === Return Value === | + | N/A |
- | ^ Return Type ^ | + | == Return Value == |
- | | Int32<!-- System.Int32 --> | | + | * Type:Boolean |
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} Opacity ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Single | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} AutoSize ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Boolean | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} AutoPan ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Boolean | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} HasCloseButton ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Boolean | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} OffsetXInPixels ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Int32 | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} OffsetYInPixels ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Int32 | ||
+ | |||
+ | ==== Protected Properties ==== | ||
+ | ** {{wiki:ProtectedProperty.gif|}} PopupType ** | ||
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup --> | ||
- | [[#Public Properties|Go Back]] | ||
- | ===== Protected Properties ===== | ||
- | ==== PopupType ==== | ||
Gets a string that represents the type of the Popup object. | Gets a string that represents the type of the Popup object. | ||
- | === Return Value === | + | == Remarks == |
- | ^ Return Type ^ | + | N/A |
- | | String<!-- System.String --> | | + | == Return Value == |
+ | * Type:String | ||
- | <!-- ThinkGeo.MapSuite.MvcEdition.Popup(overriden) --> | + | ==== Public Events ==== |
- | [[#Protected Properties|Go Back]] | + | |
- | ===== Public Events ===== | + | |
- | __NOTOC__ | + | |
- | [[Category:MvcEdition]] | + | |
- | [[Category:ThinkGeo.MapSuite.MvcEdition]] | + | |
- | [[Category:UpdateDocumentation]] | + | |