Revit 2025.3 API
UVUnary |
Negates this 2-D vector and returns the result.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public static UV operator -( UV source )
Public Shared Operator - ( source As UV ) As UV
public: static UV^ operator -( UV^ source )
static let inline (-) source : UV : UV
Parameters
- source UV
Return Value
UVThe 2-D vector opposite to this vector.

Exception | Condition |
---|---|
ArgumentNullException | Thrown when source is . |

The negated vector is obtained by changing the sign of each coordinate
of the specified vector.
See Also