WindowDelimiter.OffsetValue Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the offset of a window frame from the current row. Can be NULL if unbounded Preceding/Following or current row delimiter is used.

Namespace:   Microsoft.SqlServer.TransactSql.ScriptDom
Assembly:  Microsoft.SqlServer.TransactSql.ScriptDom (in Microsoft.SqlServer.TransactSql.ScriptDom.dll)

Syntax

public ScalarExpression OffsetValue { get; set; }
public:
property ScalarExpression^ OffsetValue {
    ScalarExpression^ get();
    void set(ScalarExpression^ value);
}
member OffsetValue : ScalarExpression with get, set
Public Property OffsetValue As ScalarExpression

Property Value

Type: Microsoft.SqlServer.TransactSql.ScriptDom.ScalarExpression

The offset of a window frame from the current row.

See Also

WindowDelimiter Class
Microsoft.SqlServer.TransactSql.ScriptDom Namespace

Return to top