'DeclarationPublic Property MouseMap As String
'UsageDim instance As MouseMapper Dim value As String instance.MouseMap = value value = instance.MouseMap
public string MouseMap {get; set;}
Gets or sets the name of the mouse map file.'DeclarationPublic Property MouseMap As String
'UsageDim instance As MouseMapper Dim value As String instance.MouseMap = value value = instance.MouseMap
public string MouseMap {get; set;}
| Exception | Description |
|---|---|
| Attachmate.Reflection.SecuredSettingException | This exception is thrown when you modify a property that was secured via the Permissions Manager or that can only be modified by an Administrator. |
If the file cannot be found there, or the full path passed in does not exist, a FileNotFoundException is thrown.
private MouseMapper mapper; public string GetMouseMap() { string map; if(mapper != null) { map = mapper.MouseMap; return map; } }