| ImagesIPhoneGrayButton_SyncLock Property | 
            Gets an object that can be used in a lock() statement on the image to force single-thread access to it while
            performing some operation on it.
            
 
Namespace: VirtualRadar.ResourcesAssembly: VirtualRadar.Resources (in VirtualRadar.Resources.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntaxpublic static Object IPhoneGrayButton_SyncLock { get; }Public Shared ReadOnly Property IPhoneGrayButton_SyncLock As Object
	Get
public:
static property Object^ IPhoneGrayButton_SyncLock {
	Object^ get ();
}static member IPhoneGrayButton_SyncLock : Object with get
Property Value
Type: 
Object Remarks
Remarks
            This is a recipe for deadlocking, be careful when using this lock that you do not call anything that
            will acquire another lock elsewhere. If in doubt then call 
IPhoneGrayButton to make a thread-clone of the
            image and use that in your image manipulations.
            
 See Also
See Also