NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IValueProvider.IsLocalVariableDeclaration

Gets a value indicating whether the specified statement is the local variable declaration for this value provider.

[Visual Basic]
Function IsLocalVariableDeclaration( _
   ByVal stmt As ICodeStatement _
) As Boolean
[C#]
bool IsLocalVariableDeclaration(
   ICodeStatement stmt
);
[C++]
bool IsLocalVariableDeclaration(
   ICodeStatement* stmt
) = 0;
[JScript]
function IsLocalVariableDeclaration(
   stmt : ICodeStatement
) : Boolean;

Parameters

stmt
The statement to compare.

Return Value

true if the specified statement is the local variable declaration for the value provider; otherwise, false.

See Also

IValueProvider Interface | IValueProvider Members | System.ComponentModel.Design Namespace | ICodeStatement