AnnLabelPositionMode Enumeration (original) (raw)

Summary

Indicates how the label is positioned relative to its parent.

Syntax

C#

Objective-C

C++/CLI

Java

Python

public enum AnnLabelPositionMode  

typedef NS_ENUM (NSInteger, LTAnnLabelPositionMode) { LTAnnLabelPositionModeNormal = 0, //normal postion starting from top left of the drawing context LTAnnLabelPositionModeRelativeToObject = 1, //the position is relative to the object bounds, here it will start from object Top-Left };

public enum AnnLabelPositionMode 

public: enum class AnnLabelPositionMode sealed

class AnnLabelPositionMode(Enum): Normal = 0 RelativeToObject = 1

Members

Value Member Description
0 Normal The label is positioned from the top-left of the current container.
1 RelativeToObject The label is positioned relative from the top-left of the parent object.