IVSSItem.Child Property
Gets a reference of the IVSSItem type to an object that represents a child of a project.
Namespace: Microsoft.VisualStudio.SourceSafe.Interop
Assembly: Microsoft.VisualStudio.SourceSafe.Interop (in microsoft.visualstudio.sourcesafe.interop.dll)
Syntax
'Declaration
ReadOnly Property Child ( _
<InAttribute> Spec As String, _
<InAttribute> <OptionalAttribute> Optional Deleted As Boolean = False _
) As VSSItem
'Usage
Dim instance As IVSSItem
Dim Spec As String
Dim Deleted As Boolean
Dim value As VSSItem
value = instance.Child(Spec, Deleted)
VSSItem Child [
[InAttribute] string Spec,
[OptionalAttribute] [InAttribute] bool Deleted
] { get; }
property VSSItem^ Child [String^, bool] {
VSSItem^ get ([InAttribute] String^ Spec, [InAttribute] [OptionalAttribute] bool Deleted);
}
/** @property */
VSSItem get_Child (/** @attribute InAttribute() */ String Spec, /** @attribute InAttribute() */ /** @attribute OptionalAttribute() */ boolean Deleted)
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- Spec
Optional. true specifies deleted child, false - non-deleted.
Property Value
A reference of the IVSSItem type to an object that represents a child of a project.
Remarks
[IDL]
HRESULT Child([in] BSTR Spec, [in, defaultvalue(0)] boolean Deleted, [out, retval] IVSSItem **ppIVSSItem);
The child of a project is a file or a project that resides inside this project.
For example, the Child property of $/MyProject is MyFile.txt.
See Also
Reference
IVSSItem Interface
IVSSItem Members
Microsoft.VisualStudio.SourceSafe.Interop Namespace