C# 클래스 SharpVectors.Dom.Svg.SvgAngle

Summary description for SvgAngle.
상속: ISvgAngle
파일 보기 프로젝트 열기: codebutler/savagesvg 1 사용 예제들

공개 메소드들

메소드 설명
ConvertToSpecifiedUnits ( SvgAngleType unitType ) : void

Preserve the same underlying stored value, but reset the stored unit identifier to the given unitType. Object attributes unitType, valueAsSpecified and valueAsString might be modified as a result of this method.

NewValueSpecifiedUnits ( SvgAngleType unitType, double valueInSpecifiedUnits ) : void

Reset the value as a number with an associated unitType, thereby replacing the values for all of the attributes on the object.

SvgAngle ( string baseVal, string defaultValue, bool readOnly ) : System

Creates a SvgAngle value

메소드 상세

ConvertToSpecifiedUnits() 공개 메소드

Preserve the same underlying stored value, but reset the stored unit identifier to the given unitType. Object attributes unitType, valueAsSpecified and valueAsString might be modified as a result of this method.
public ConvertToSpecifiedUnits ( SvgAngleType unitType ) : void
unitType SvgAngleType The unitType to switch to (e.g., SvgAngleTypeDEG).
리턴 void

NewValueSpecifiedUnits() 공개 메소드

Reset the value as a number with an associated unitType, thereby replacing the values for all of the attributes on the object.
public NewValueSpecifiedUnits ( SvgAngleType unitType, double valueInSpecifiedUnits ) : void
unitType SvgAngleType The unitType for the angle value (e.g., SvgAngleTypeDEG).
valueInSpecifiedUnits double The angle value
리턴 void

SvgAngle() 공개 메소드

Creates a SvgAngle value
public SvgAngle ( string baseVal, string defaultValue, bool readOnly ) : System
baseVal string
defaultValue string The default value for the angle.
readOnly bool Specifies if the value should be read-only
리턴 System