ISProfileForm.LockedByMe

Description

This property is True if the form was locked by the logged-in user.

Syntax

object.LockedByMe()

Part Attribute Type Description
object Required
The object always implements the ISProfileForm interface

Return Value

bool

Example

Display LockedByMe for the form.

Dim aForm
Dim aFormInfo

Set aForm = Profile.Form
aFormInfo =_
  "Short Name: " & aForm.ShortName & vbNewLine &_
  "Type Name: " & aForm.TypeName & vbNewLine &_
  "Locked By Me: " & aForm.LockedByMe & vbNewLine
  
Profile.MsgBox(aFormInfo)  
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Locked By Me cannot be found.

Version information

Added in v7.8.0