GeneralTransformGroup.TryTransform(Point, Point) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试变换指定的点。
public:
override bool TryTransform(System::Windows::Point inPoint, [Runtime::InteropServices::Out] System::Windows::Point % result);
public override bool TryTransform (System.Windows.Point inPoint, out System.Windows.Point result);
override this.TryTransform : System.Windows.Point * Point -> bool
Public Overrides Function TryTransform (inPoint As Point, ByRef result As Point) As Boolean
参数
- inPoint
- Point
要转换的点。
- result
- Point
变换 inPoint
的结果。
返回
如果 inPoint
已变换,则为 true
;否则为 false
。