Ssis Annotation Element
Attributes
Attribute | API Type | Default | Description |
---|---|---|---|
FontFamily | FontFamily | AbadiMtCondensedLight | Specifies the font family or typeface that should be used to render the annotation text on the SSIS design surface. The default value is Tahoma. |
FontSize | Double | 11 | Specifies the point size that should be used to render the annotation text on the SSIS design surface. The default value is 11. |
FontStyle | FontStyle | Regular | Specifies the style that should be used to render the text of the annotation on the SSIS design surface. If the value specified in the FontFamily property does not support the specified FontSyle, the supplied FontStyle value will be ignored. The default value is Regular. |
Height | Int32 | 50 | Specifies the height of the bounding box around the text of the SSIS annotation. If this value is too small or if the Width property value was too small (resulting in text wrapping), the SSIS design surface will override the supplied height value. The default value is 50. |
Id | Guid | 00000000-0000-0000-0000-000000000000 | Allows the developer to specify a unique identifier (GUID) for the SSIS Annotation. This can be used to retain a consistent ID between builds. |
Width | Int32 | 100 | Specifies the width of the bounding box around the text of the SSIS annotation. If this value is too small, the SSIS design surface will make a best effort to render the annotation, which usually results in wrapping of the annotation text and an increase of the height of the bounding box beyond what was specified in the Height property. The default value is 100. |
X | Double | 0 | Specifies the horizontal or x-axis offset of the top-left corner of this SSIS annotation within its parent container. The default is 0. |
Y | Double | 0 | Specifies the vertical or y-axis offset of the top-left corner of this SSIS annotation within its parent container. The default is 0. |
Collection Children
Child | API Type | Description |
---|---|---|
<Annotations> <Annotation /> </Annotations> | AstAnnotationNode | This is a collection of annotation items that can be used to specify documentation, tags, or other information. Annotations are particularly useful for storing information about nodes that can be used by BimlScript code. |