Interface IRecordInitialize
Provides a means for initializing a IRecord instance with PropertyValue instances
Namespace: OSGeo.MapGuide.MaestroAPI.Feature
Assembly: OSGeo.MapGuide.MaestroAPI.dll
Syntax
public interface IRecordInitialize
Properties
| Improve this Doc View SourcePropertyNames
Gets the property names.
Declaration
IEnumerable<string> PropertyNames { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.String> |
Methods
| Improve this Doc View SourceGetValue(String)
Gets the specified property value by name
Declaration
PropertyValue GetValue(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Returns
Type | Description |
---|---|
PropertyValue |
PutValue(String, PropertyValue)
Adds the specified property value
Declaration
void PutValue(string name, PropertyValue value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
PropertyValue | value |