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: 2026.1.0.Release.0310c5a2706944284e5b97cec8929e1e2f70c73d
Syntax
public static readonly SbViewportRegion Default

Field Value

Type: SbViewportRegion
See Also