←Select platform

AnnRenderState Enumeration

Summary
Indicates different states of an AnnObject that can be rendered.
Syntax
C#
Objective-C
C++/CLI
Java
Python
[FlagsAttribute()] 
public enum AnnRenderState 
typedef NS_ENUM (NSInteger, LTAnnRenderState) { 
 LTAnnRenderStateNone = 0, // Don't render any of the following 
 LTAnnRenderStateLock = 1, // Render Lock picture 
 LTAnnRenderStateContent = 2, // Render Content picture 
 LTAnnRenderStateLabel = 4, // Render labels 
 LTAnnRenderStateAll = 7, // Lock | Content // Render all 
}; 
public enum AnnRenderState 
public: 
   [FlagsAttribute] 
   enum class AnnRenderState sealed 
class AnnRenderState(Enum): 
   None = 0 
   Lock = 1 
   Content = 2 
   Label = 4 
   All = 7 
Members
ValueMemberDescription
0x00000000None Do not render any of the states.
0x00000001Lock Render the lock picture.
0x00000002Content Render the content picture.
0x00000004Label Render the object labels.
0x00000007All Render all (lock, content and labels).
Remarks

Used with AnnRenderingEngine.RenderState to control which of these state are rendered.

Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Annotations.Engine Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.