From 7799062809d44e6ecd0e6c23e465b7e6639d8328 Mon Sep 17 00:00:00 2001 From: "ester.zhou" Date: Wed, 31 Aug 2022 17:18:20 +0800 Subject: [PATCH] update ts-basic-components-remotewindow.md (8265) Signed-off-by: ester.zhou --- .../arkui-ts/ts-basic-components-remotewindow.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/en/application-dev/reference/arkui-ts/ts-basic-components-remotewindow.md b/en/application-dev/reference/arkui-ts/ts-basic-components-remotewindow.md index 6389070b10..a7f6e232b7 100644 --- a/en/application-dev/reference/arkui-ts/ts-basic-components-remotewindow.md +++ b/en/application-dev/reference/arkui-ts/ts-basic-components-remotewindow.md @@ -64,10 +64,10 @@ struct RemoteWindowExample { build() { Column() { RemoteWindow(this.target) - .translate({x:100, y:200}) - .scale({x:0.5, y:0.5}) - .opacity(0.8) - .position({x:px2vp(this.target?.windowBounds.left), y:px2vp(this.target?.windowBounds.top)}) + .translate({ x: 100, y: 200 }) + .scale({ x: 0.5, y: 0.5 }) + .opacity(0.8) + .position({ x: px2vp(this.target?.windowBounds.left), y: px2vp(this.target?.windowBounds.top) }) .width(px2vp(this.target?.windowBounds.width)) .height(px2vp(this.target?.windowBounds.height)) } -- GitLab