ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
This is an old revision of the document!
<!– Class –> This class defines the base abstract class for creating MVC control.
| Name | Parameters | DeclaringType | Summary |
|---|
| Name | Parameters | DeclaringType | Summary |
|---|---|---|---|
MvcControlBase | Initializes a new instance of the MvcControlBase class. | ||
MvcControlBase | String | Initializes a new instance of the MvcControlBase class. |
| Name | Parameters | DeclaringType | Summary |
|---|---|---|---|
Equals | Object | Object | |
Fill | String | Fill an instance according to the input entity string | |
Fill | String, String | Fill an instance based on the input model name according to the input entity string | |
GetHashCode | Object | ||
GetType | Object | ||
ToString | String | Convert current object based on mode name to an entity string. | |
ToString | Object(overriden) |
| Name | Parameters | DeclaringType | Summary |
|---|---|---|---|
Finalize | Object | ||
MemberwiseClone | Object |
| Name | Return | DeclaringType | Summary |
|---|---|---|---|
ClientScriptBlocks | Dictionary<String,String> | Gets the client script blocks which will be registered to the page. | |
ClientScriptFileNames | Dictionary<String,String> | Gets the client script files which will be registered to the page. | |
Height | Unit | Gets or sets the height of the control. | |
HtmlAttributes | Dictionary<String,String> | Gets the customized html attributes of the control. | |
Id | String | Gets the client id of the control, it will be calculated from Name property. | |
Name | String | Gets the unique identifier name of the control. | |
StyleSheetFileNames | Collection<String> | Gets the css files which will be wrote to the client html. | |
ViewContext | ViewContext | Gets the ViewContext of the page which includes the control. | |
Visible | Boolean | Gets or sets the visibility of the control. | |
Width | Unit | Gets or sets the width of the control. |
| Name | Return | DeclaringType | Summary |
|---|---|---|---|
ClientScriptManager | MvcClientScriptManager | Gets the object which is used for managing, registering the client scripts. | |
ClientStyleSheetManager | MvcClientStyleSheetManager | Gets the object which is used for managing, registering the css files used by the control. |
| Name | Event Arguments | DeclaringType | Summary |
|---|
Initializes a new instance of the MvcControlBase class.
| Name | Type | Description |
|---|
Initializes a new instance of the MvcControlBase class.
| Name | Type | Description |
|---|---|---|
| name | String<!– System.String –> | The unique identifier name of the control. |
| Return Type | Description |
|---|---|
| Boolean<!– System.Boolean –> |
| Name | Type | Description |
|---|---|---|
| obj | Object<!– System.Object –> |
<!– System.Object –> Go Back
Fill an instance according to the input entity string
| Return Type | Description |
|---|---|
| Void<!– System.Void –> |
| Name | Type | Description |
|---|---|---|
| entityString | String<!– System.String –> | the inpu entity string. |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Fill an instance based on the input model name according to the input entity string
| Return Type | Description |
|---|---|
| Void<!– System.Void –> |
| Name | Type | Description |
|---|---|---|
| modelName | String<!– System.String –> | the input model name |
| entityString | String<!– System.String –> | the input entity string |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
| Return Type | Description |
|---|---|
| Int32<!– System.Int32 –> |
| Name | Type | Description |
|---|
<!– System.Object –> Go Back
| Return Type | Description |
|---|---|
| Type<!– System.Type –> |
| Name | Type | Description |
|---|
<!– System.Object –> Go Back
Convert current object based on mode name to an entity string.
| Return Type | Description |
|---|---|
| String<!– System.String –> | an entity string |
| Name | Type | Description |
|---|---|---|
| modelName | String<!– System.String –> | model name |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
| Return Type | Description |
|---|---|
| String<!– System.String –> |
| Name | Type | Description |
|---|
<!– System.Object(overriden) –> Go Back
| Return Type | Description |
|---|---|
| Void<!– System.Void –> |
| Name | Type | Description |
|---|
<!– System.Object –> Go Back
| Return Type | Description |
|---|---|
| Object<!– System.Object –> |
| Name | Type | Description |
|---|
<!– System.Object –> Go Back
Gets the client script blocks which will be registered to the page.
| Return Type |
|---|
| Dictionary<String,String><!– System.Collections.Generic.Dictionary{System.String,System.String} –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets the client script files which will be registered to the page.
| Return Type |
|---|
| Dictionary<String,String><!– System.Collections.Generic.Dictionary{System.String,System.String} –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets or sets the height of the control.
| Return Type |
|---|
| Unit<!– System.Web.UI.WebControls.Unit –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets the customized html attributes of the control.
| Return Type |
|---|
| Dictionary<String,String><!– System.Collections.Generic.Dictionary{System.String,System.String} –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets the client id of the control, it will be calculated from Name property.
| Return Type |
|---|
| String<!– System.String –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets the unique identifier name of the control.
| Return Type |
|---|
| String<!– System.String –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets the css files which will be wrote to the client html.
| Return Type |
|---|
| Collection<String><!– System.Collections.ObjectModel.Collection{System.String} –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets the ViewContext of the page which includes the control.
| Return Type |
|---|
| ViewContext<!– System.Web.Mvc.ViewContext –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets or sets the visibility of the control.
| Return Type |
|---|
| Boolean<!– System.Boolean –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets or sets the width of the control.
| Return Type |
|---|
| Unit<!– System.Web.UI.WebControls.Unit –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets the object which is used for managing, registering the client scripts.
| Return Type |
|---|
| MvcClientScriptManager<!– ThinkGeo.MapSuite.MvcEdition.MvcClientScriptManager –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back
Gets the object which is used for managing, registering the css files used by the control.
| Return Type |
|---|
| MvcClientStyleSheetManager<!– ThinkGeo.MapSuite.MvcEdition.MvcClientStyleSheetManager –> |
<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBase –> Go Back