Interface IResultColumnSet
A search command result specification
Namespace: OSGeo.MapGuide.ObjectModels.WebLayout
Assembly: OSGeo.MapGuide.ObjectModels.dll
Syntax
public interface IResultColumnSet
Properties
| Improve this Doc View SourceColumn
Gets the columns.
Declaration
IEnumerable<IResultColumn> Column { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IResultColumn> | The columns. |
Methods
| Improve this Doc View SourceAddResultColumn(IResultColumn)
Adds the result column.
Declaration
void AddResultColumn(IResultColumn col)
Parameters
Type | Name | Description |
---|---|---|
IResultColumn | col | The col. |
Clear()
Clears this instance.
Declaration
void Clear()
CreateColumn(String, String)
Creates the column.
Declaration
IResultColumn CreateColumn(string name, string property)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
System.String | property | The property. |
Returns
Type | Description |
---|---|
IResultColumn |
RemoveResultColumn(IResultColumn)
Removes the result column.
Declaration
void RemoveResultColumn(IResultColumn col)
Parameters
Type | Name | Description |
---|---|---|
IResultColumn | col | The col. |