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!

ICodeNavigatorService.GetDoesFieldExist

Gets if a field of the given name exists in the code.

[Visual Basic]
Function GetDoesFieldExist( _
   ByVal name As String _
) As Boolean
[C#]
bool GetDoesFieldExist(
   string name
);
[C++]
bool GetDoesFieldExist(
   String* name
) = 0;
[JScript]
function GetDoesFieldExist(
   name : String
) : Boolean;

Parameters

name
The name of the field.

Return Value

true if the field exists, otherwise false.

See Also

ICodeNavigatorService Interface | ICodeNavigatorService Members | System.ComponentModel.Design Namespace