The GetFixedState Method is available in LEADTOOLS Document and Medical Imaging toolkits.
Determines if this
AnnObject is in a
fixed state.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Function GetFixedState() As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As AnnObject
Dim value As Boolean
value = instance.GetFixedState() |
C# | |
---|
public virtual bool GetFixedState() |
C++/CLI | |
---|
public:
virtual bool GetFixedState(); |
Return Value
true if
AnnObject is in a fixed state; false otherwise
Example
This sample examines the fixed state of all objects in a container and sets the fixed state to false.
Visual Basic | Copy Code |
---|
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 |
C# | Copy Code |
---|
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);
} |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also