Leadtools.Annotations Namespace > AnnObject Class : SupportsFixed Property |
public virtual bool SupportsFixed {get;}
'Declaration Public Overridable ReadOnly Property SupportsFixed As Boolean
public virtual bool SupportsFixed {get;}
get_SupportsFixed();
For more information on fixed annotation objects, refer to Fixed Annotations.
Public Sub AnnotationObject_SupportsFixed(ByVal annContainer As AnnContainer) Dim supportsFixed As Boolean = True For Each obj As AnnObject In annContainer.Objects supportsFixed = supportsFixed AndAlso obj.SupportsFixed Next obj Dim s As String = String.Format("All Objects in AnnContainer support fixed: {0}", supportsFixed) MessageBox.Show(s) End Sub
public void AnnotationObject_SupportsFixed(AnnContainer annContainer) { bool supportsFixed = true; foreach (AnnObject obj in annContainer.Objects) { supportsFixed = supportsFixed && obj.SupportsFixed; } string s = String.Format("All Objects in AnnContainer support fixed: {0}", supportsFixed); MessageBox.Show(s); }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2