Rename bounds -> rectangle
This commit is contained in:
parent
f80e81bf9f
commit
4d49156dac
14 changed files with 31 additions and 31 deletions
|
@ -1,6 +0,0 @@
|
|||
# Bounds
|
||||
|
||||
* `x` Number
|
||||
* `y` Number
|
||||
* `width` Number
|
||||
* `height` Number
|
|
@ -1,4 +1,4 @@
|
|||
# Certificate
|
||||
# Certificate Object
|
||||
|
||||
* `data` String - PEM encoded data
|
||||
* `issuerName` String - Issuer's Common Name
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
# Display
|
||||
# Display Object
|
||||
|
||||
* `id` Number - Unique identifier associated with the display.
|
||||
* `rotation` Number - Can be 0, 90, 180, 270, represents screen rotation in
|
||||
clock-wise degrees.
|
||||
* `scaleFactor` Number - Output device's pixel scale factor.
|
||||
* `touchSupport` String - Can be `available`, `unavailable`, `unknown`.
|
||||
* `bounds` [Bounds](bounds.md)
|
||||
* `bounds` [Rectangle](rectangle.md)
|
||||
* `size` Object
|
||||
* `height` Number
|
||||
* `width` Number
|
||||
* `workArea` [Bounds](bounds.md)
|
||||
* `workArea` [Rectangle](rectangle.md)
|
||||
* `workAreaSize` Object
|
||||
* `height` Number
|
||||
* `width` Number
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# JumpListCategory
|
||||
# JumpListCategory Object
|
||||
|
||||
* `type` String - One of the following:
|
||||
* `tasks` - Items in this category will be placed into the standard `Tasks`
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# JumpListItem
|
||||
# JumpListItem Object
|
||||
|
||||
* `type` String - One of the following:
|
||||
* `task` - A task will launch an app with specific arguments.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# MemoryUsageDetails
|
||||
# MemoryUsageDetails Object
|
||||
|
||||
* `count` Number
|
||||
* `size` Number
|
||||
|
|
6
docs/api/structures/rectangle.md
Normal file
6
docs/api/structures/rectangle.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Rectangle Object
|
||||
|
||||
* `x` Number - The x coordinate of the origin of the rectangle
|
||||
* `y` Number - The y coordinate of the origin of the rectangle
|
||||
* `width` Number
|
||||
* `height` Number
|
|
@ -1,4 +1,4 @@
|
|||
# ShortcutDetails
|
||||
# ShortcutDetails Object
|
||||
|
||||
* `target` String - The target to launch from this shortcut.
|
||||
* `cwd` String (optional) - The working directory. Default is empty.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Task
|
||||
# Task Object
|
||||
|
||||
* `program` String - Path of the program to execute, usually you should
|
||||
specify `process.execPath` which opens the current program.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# ThumbarButton
|
||||
# ThumbarButton Object
|
||||
|
||||
* `icon` [NativeImage](native-image.md) - The icon showing in thumbnail
|
||||
toolbar.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue