Table of Contents

Enum FeatureSetPolicy

Namespace
Gve.Text
Assembly
Gve.Text.dll

Policy for adding a Feature to a set.

public enum FeatureSetPolicy

Fields

Multiple = 0

When added, the feature is just added to the set (=).

Single = 1

When added and feature(s) already exists, they are replaced (:=).

SingleFirst = 2

When adding several features, and features with the same name already exist, the first one being added replaces all the existing ones, while the following ones to be added just get added as multiple (==). This has meaning only when adding several features at once. Otherwise, it just behaves as Single.