AnnShowLockedIcon Example for Visual Basic

Note: This topic is for Document/Medical only.

'Please note the following:
'LEADRasterView1 refers to a LEADRasterView control
'Global declarations
Private WithEvents RasterAnn As LEADRasterAnnotation
Private RasterAnnToolbar As LEADRasterAnnToolBar

'In the Form_Load method:
Set RasterAnn = New LEADRasterAnnotation
Set RasterAnnToolbar = New LEADRasterAnnToolBar
RasterAnn.AnnParentRasterView = LEADRasterView1

'This example toggles the AnnShowLockedIcon property.
Private Sub AnnShowLockedIcon_Click()
RasterAnn.AnnShowLockedIcon = Not RasterAnn.AnnShowLockedIcon
MsgBox "AnnShowLockedIcon: " & RasterAnn.AnnShowLockedIcon
End Sub