VectorLayer.CopyAttributes
CopyAttributes(FeaturesSequence)
Copies attributes of other VectorLayer to this one.
public void CopyAttributes(FeaturesSequence featuresSequence)
| Parameter | Type | Description |
|---|
| featuresSequence | FeaturesSequence | The features sequence to copy attributes from. |
Exceptions
| exception | condition |
|---|
| ArgumentNullException | The input layer is null. |
See Also
CopyAttributes(FeaturesSequence, IAttributesConverter)
Copies attributes of other VectorLayer to this one.
public void CopyAttributes(FeaturesSequence featuresSequence, IAttributesConverter converter)
| Parameter | Type | Description |
|---|
| featuresSequence | FeaturesSequence | The features sequence to copy attributes from. |
| converter | IAttributesConverter | An instance of custom IAttributesConverter that will process the attributes one by one. |
Exceptions
| exception | condition |
|---|
| ArgumentNullException | The input layer is null. |
See Also