Class WorldLabelingCandidate
This class represents a candidate with world center point information for labeling.
public class WorldLabelingCandidate : LabelingCandidate
- Inheritance
-
WorldLabelingCandidate
- Inherited Members
Remarks
This class is used in the labeling system. We keep track of every potential label in this class as it goes through the labeling rules.
Constructors
WorldLabelingCandidate()
This is a default constructor for the class.
public WorldLabelingCandidate()
Remarks
If you use this constructor, then you should set the applicable properties manually.
WorldLabelingCandidate(string)
This is a constructor for the class.
public WorldLabelingCandidate(string originalText)
Parameters
originalText
stringThis parameter represents the text of the label before it is potentially modified.
Remarks
None
WorldLabelingCandidate(string, PointShape)
This is a constructor for the class.
public WorldLabelingCandidate(string originalText, PointShape centerPointInWorldCoordinates)
Parameters
originalText
stringThis parameter represents the text of the label before it is potentially modified.
centerPointInWorldCoordinates
PointShapeThis parameter is the center of the polygon (in world coordinates) representing the area to be labeled.
Remarks
None
Properties
CenterPointInWorldCoordinates
This property gets or sets the Center Point position in world Coordinate system.
public PointShape CenterPointInWorldCoordinates { get; set; }