Transform.TryTransform(Point, Point) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Attempts to transform the specified point and returns a value that indicates whether the transformation was successful.
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
Parameters
- inPoint
- Point
The point to transform.
- result
- Point
The result of transforming inPoint
.
Returns
true
if inPoint
was transformed; otherwise, false
.
Remarks
Unlike the Transform method, this method does not throw an exception if the transformation is unsuccessful.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET