- graphicAnnSQItem
- An item element under the "Graphic Annotation Sequence" (0070,0001) in the "Graphic Annotation Module".
- textObject
- The text object attributes.
- checkLayer
- true to verify the existence of the layer to which the new object will be added (the method will fail if the layer does not exist); false to add the new object without verifying the existence of the layer.
Visual Basic (Declaration) | |
---|---|
Public Sub CreateTextObject( _ ByVal graphicAnnSQItem As DicomElement, _ ByVal textObject As DicomTextObject, _ ByVal checkLayer As Boolean _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As DicomDataSet Dim graphicAnnSQItem As DicomElement Dim textObject As DicomTextObject Dim checkLayer As Boolean instance.CreateTextObject(graphicAnnSQItem, textObject, checkLayer) |
C# | |
---|---|
public void CreateTextObject( DicomElement graphicAnnSQItem, DicomTextObject textObject, bool checkLayer ) |
C++/CLI | |
---|---|
public: void CreateTextObject( DicomElement^ graphicAnnSQItem, DicomTextObject^ textObject, bool checkLayer ) |
Parameters
- graphicAnnSQItem
- An item element under the "Graphic Annotation Sequence" (0070,0001) in the "Graphic Annotation Module".
- textObject
- The text object attributes.
- checkLayer
- true to verify the existence of the layer to which the new object will be added (the method will fail if the layer does not exist); false to add the new object without verifying the existence of the layer.
For an example, refer to DicomDataSet.FindFirstGraphicAnnSQItem.
When checkLayer is set to true, the method checks if the layer specified in textObject.LayerName exists or not. If it does not exist, the method will throw an exception.
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)