Click or drag to resize
SbViewportRegionDefault Field
Provide a default viewport region equivalent to
new SbViewportRegion(100,100,1)
Remarks
Note to developper who comes from C++. As .NET framework does not allow to define a parameterless constructor for struct, use this field to keep the same behavior. When you write
SbViewportRegion viewport = new SbViewportRegion()
> all internal fields are zeroed. Writing
SbViewportRegion viewport = SbViewportRegion.Default
ensures you to have an equivalent object.

Namespace: OIV.Inventor
Assembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2025.2.0.Release.47655112efc68a70bb943ee3bd5c1e27763923ef
Syntax
public static readonly SbViewportRegion Default

Field Value

Type: SbViewportRegion
See Also