Accusoft.ImagXpressSdk Namespace > ImageXView Class : AutoImageDispose Property |
'Declaration <BrowsableAttribute(False)> <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> <DescriptionAttribute("Enables or disables Dispose calling the current Image's Dispose method")> <DefaultValueAttribute()> Public Property AutoImageDispose As Boolean
'Usage Dim instance As ImageXView Dim value As Boolean instance.AutoImageDispose = value value = instance.AutoImageDispose
[Browsable(false)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] [Description("Enables or disables Dispose calling the current Image's Dispose method")] [DefaultValue()] public bool AutoImageDispose {get; set;}
[Browsable(false)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] [Description("Enables or disables Dispose calling the current Image's Dispose method")] [DefaultValue()] public: __property bool get_AutoImageDispose(); public: __property void set_AutoImageDispose( bool value );
[Browsable(false)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] [Description("Enables or disables Dispose calling the current Image's Dispose method")] [DefaultValue()] public: property bool AutoImageDispose { bool get(); void set ( bool value); }
The default value is false.
Because the default value is false, it is the programmer's responsiblity to call the Dispose(Boolean) method for the ImageX object after the ImageXView's Dispose method is called. Set this property to true if you would like ImageX's object connected to the ImageXView to be disposed of automatically when the ImageXView is disposed.
This is useful if you tend to tie one and only one image to a view.