func onCutCommand (perform: (() -> [NSItemProvider ])?) -> some View
Adds an action to perform in response to the system’s Cut command.
システムのもつ「カット」コマンドに答えて実行するアクションを加えます。
func onPasteCommand (of: [UTType], perform: ([NSItemProvider ]) -> Void) -> some View
Adds an action to perform in response to the system’s Paste command.
システムのもつ「ペースト」コマンドに答えて実行するアクションを加えます。
func onPasteCommand <Payload>(of: [UTType], validator: ([NSItemProvider ]) -> Payload?, perform: (Payload) -> Void) -> some View
Adds an action to perform in response to the system’s Paste command with items that you validate.
あなたが妥当と認める項目をもつシステム「ペースト」コマンドに答えて実行するあるアクションを加えます。