Class SVGPoint

Class SVGPoint

名称: Aspose.Html.Dom.Svg.DataTypes セットアップ: Aspose.HTML.dll (25.4.0)

多くの SVG DOM インターフェイスは SVGPoint クラスのオブジェクトを参照します. SVGPoint は (x, y) コーディネート カップルです. マトリックス 作業で使用される場合、 SVGPoint は 形式のベクターとして扱われます:(X)(Y)[1]SVGRect オブジェクトが単なる読み方として指定されている場合、その属性のいずれかに割り当てようとする試みは、例外が投げ捨てられる。

[ComVisible(true)]
[DOMObject]
[DOMName("SVGPoint")]
public class SVGPoint : SVGValueType, INotifyPropertyChanged, IDisposable

Inheritance

object DOMObject SVGValueType SVGPoint

Implements

INotifyPropertyChanged , IDisposable

相続人

SVGValueType.Dispose() , SVGValueType.Dispose(bool) , DOMObject.GetPlatformType() , object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Properties

X

X コーディネート

[DOMName("x")]
public float X { get; set; }

不動産価値

float

Exceptions

DOMException

コード Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR.SVGPoint オブジェクトが単に読み取られている場合、または単に読み取られている DOM 属性と一致する場合にアップします。

Y

コーディネート Y

[DOMName("y")]
public float Y { get; set; }

不動産価値

float

Exceptions

DOMException

コード Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR.SVGPoint オブジェクトが単に読み取られている場合、または単に読み取られている DOM 属性と一致する場合にアップします。

Methods

MatrixTransform(マトリックス)

この SVGPoint オブジェクトに 2x3 マトリックス変換を適用し、新しい変換された SVGPoint オブジェクトを返します。newpoint = マトリックス* thispoint

[DOMName("matrixTransform")]
public SVGPoint MatrixTransform(SVGMatrix matrix)

Parameters

matrix SVGMatrix

この SVGPoint オブジェクトに適用されるマトリックスです。

Returns

SVGPoint

新しい SVGPoint オブジェクト

ToString()

このインスタンスを代表するSystem.Stringを返します。

public override string ToString()

Returns

string

このインスタンスを代表するシステムストリングです。

 日本語