Leadtools.Annotations Namespace > AnnObject Class : GetFixedState Method |
public virtual bool GetFixedState()
'Declaration Public Overridable Function GetFixedState() As Boolean
public virtual bool GetFixedState()
function Leadtools.Annotations.AnnObject.GetFixedState()
public: virtual bool GetFixedState();
Private Sub AnnotationObject_GetFixedState(ByVal annContainer As AnnContainer) Dim fixedStateChanged As Boolean = False For Each obj As AnnObject In annContainer.Objects If obj.GetFixedState() Then obj.SetFixedState(False, True) fixedStateChanged = True End If Next obj Dim s As String = String.Format("Some objects in the container had 'fixed' changed to 'unfixed' : {0}", fixedStateChanged) MessageBox.Show(s) End Sub
void AnnotationObject_GetFixedState(AnnContainer annContainer) { bool fixedStateChanged = false; foreach (AnnObject obj in annContainer.Objects) { if (obj.GetFixedState()) { obj.SetFixedState(false, true); fixedStateChanged = true; } } string s = string.Format("Some objects in the container had 'fixed' changed to 'unfixed' : {0}", fixedStateChanged); 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