You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ado/reference/ado-md-api/childcount-property-ado-md.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,22 +19,22 @@ author: rothja
19
19
ms.author: jroth
20
20
---
21
21
# ChildCount Property (ADO MD)
22
-
Indicates the number of members for which the current [Member](../../../ado/reference/ado-md-api/member-object-ado-md.md) object is the parent in a hierarchy.
22
+
Indicates the number of members for which the current [Member](./member-object-ado-md.md) object is the parent in a hierarchy.
23
23
24
24
## Return Values
25
25
Returns a **Long** integer and is read-only.
26
26
27
27
## Remarks
28
-
Use the **ChildCount** property to return an estimate of how many children a **Member** has. The actual children of a **Member** can be returned by the [Children](../../../ado/reference/ado-md-api/children-property-ado-md.md) property.
28
+
Use the **ChildCount** property to return an estimate of how many children a **Member** has. The actual children of a **Member** can be returned by the [Children](./children-property-ado-md.md) property.
29
29
30
-
For **Member** objects from a [Position](../../../ado/reference/ado-md-api/position-object-ado-md.md) object, the maximum number returned is 65536. If the actual number of children exceeds 65536, the value returned will still be 65536. Therefore, the application should interpret a **ChildCount** of 65536 as equal to or greater than 65536 children.
30
+
For **Member** objects from a [Position](./position-object-ado-md.md) object, the maximum number returned is 65536. If the actual number of children exceeds 65536, the value returned will still be 65536. Therefore, the application should interpret a **ChildCount** of 65536 as equal to or greater than 65536 children.
31
31
32
-
For **Member** objects from a [Level](../../../ado/reference/ado-md-api/level-object-ado-md.md) object, use the ADO collection [Count](../../../ado/reference/ado-api/count-property-ado.md) property on the **Children** collection to determine the exact number of children. Determining the exact number of children may be slow if the number of children in the collection is large.
32
+
For **Member** objects from a [Level](./level-object-ado-md.md) object, use the ADO collection [Count](../ado-api/count-property-ado.md) property on the **Children** collection to determine the exact number of children. Determining the exact number of children may be slow if the number of children in the collection is large.
Copy file name to clipboardExpand all lines: docs/ado/reference/ado-md-api/children-property-ado-md.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,16 +19,16 @@ author: rothja
19
19
ms.author: jroth
20
20
---
21
21
# Children Property (ADO MD)
22
-
Returns a [Members](../../../ado/reference/ado-md-api/members-collection-ado-md.md) collection for which the current [Member](../../../ado/reference/ado-md-api/member-object-ado-md.md) is the parent in the hierarchy.
22
+
Returns a [Members](./members-collection-ado-md.md) collection for which the current [Member](./member-object-ado-md.md) is the parent in the hierarchy.
23
23
24
24
## Return Values
25
25
Returns a **Members** collection and is read-only.
26
26
27
27
## Remarks
28
-
The **Children** property contains a **Members** collection for which the current **Member** is the hierarchical parent. Leaf level **Member** objects have no child members in the **Members** collection. This property is only supported on **Member** objects belonging to a [Level](../../../ado/reference/ado-md-api/level-object-ado-md.md) object. An error occurs when this property is referenced from **Member** objects belonging to a [Position](../../../ado/reference/ado-md-api/position-object-ado-md.md) object.
28
+
The **Children** property contains a **Members** collection for which the current **Member** is the hierarchical parent. Leaf level **Member** objects have no child members in the **Members** collection. This property is only supported on **Member** objects belonging to a [Level](./level-object-ado-md.md) object. An error occurs when this property is referenced from **Member** objects belonging to a [Position](./position-object-ado-md.md) object.
Copy file name to clipboardExpand all lines: docs/ado/reference/ado-md-api/close-method-ado-md.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,17 +29,17 @@ Cellset.Close
29
29
```
30
30
31
31
## Remarks
32
-
Using the **Close** method to close a [Cellset](../../../ado/reference/ado-md-api/cellset-object-ado-md.md) object will release the associated data, including data in any related [Cell](../../../ado/reference/ado-md-api/cell-object-ado-md.md), [Axis](../../../ado/reference/ado-md-api/axis-object-ado-md.md), [Position](../../../ado/reference/ado-md-api/position-object-ado-md.md), or [Member](../../../ado/reference/ado-md-api/member-object-ado-md.md) objects. Closing a **Cellset** does not remove it from memory; you can change its property settings and open it again later. To completely eliminate an object from memory, set the object variable to **Nothing**.
32
+
Using the **Close** method to close a [Cellset](./cellset-object-ado-md.md) object will release the associated data, including data in any related [Cell](./cell-object-ado-md.md), [Axis](./axis-object-ado-md.md), [Position](./position-object-ado-md.md), or [Member](./member-object-ado-md.md) objects. Closing a **Cellset** does not remove it from memory; you can change its property settings and open it again later. To completely eliminate an object from memory, set the object variable to **Nothing**.
33
33
34
-
You can later call the [Open](../../../ado/reference/ado-md-api/open-method-ado-md.md) method to reopen the **Cellset** using the same or another source string. While the **Cellset** object is closed, retrieving any properties or calling any methods that reference the underlying data or metadata generates an error.
34
+
You can later call the [Open](./open-method-ado-md.md) method to reopen the **Cellset** using the same or another source string. While the **Cellset** object is closed, retrieving any properties or calling any methods that reference the underlying data or metadata generates an error.
Copy file name to clipboardExpand all lines: docs/ado/reference/ado-md-api/cubedef-object-ado-md.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,13 +23,13 @@ Represents a cube from a multidimensional schema, containing a set of related di
23
23
## Remarks
24
24
With the collections and properties of a **CubeDef** object, you can do the following:
25
25
26
-
- Identify a **CubeDef** with the [Name](../../../ado/reference/ado-md-api/name-property-ado-md.md) property.
26
+
- Identify a **CubeDef** with the [Name](./name-property-ado-md.md) property.
27
27
28
-
- Return a string that describes the cube with the [Description](../../../ado/reference/ado-md-api/description-property-ado-md.md) property.
28
+
- Return a string that describes the cube with the [Description](./description-property-ado-md.md) property.
29
29
30
-
- Return the dimensions that make up the cube with the [Dimensions](../../../ado/reference/ado-md-api/dimensions-collection-ado-md.md) collection.
30
+
- Return the dimensions that make up the cube with the [Dimensions](./dimensions-collection-ado-md.md) collection.
31
31
32
-
- Obtain additional information about the **CubeDef** with the standard ADO [Properties](../../../ado/reference/ado-api/properties-collection-ado.md) collection.
32
+
- Obtain additional information about the **CubeDef** with the standard ADO [Properties](../ado-api/properties-collection-ado.md) collection.
33
33
34
34
The **Properties** collection contains provider-supplied properties. The following table lists properties that might be available. The actual property list may differ depending upon the implementation of the provider. See the documentation for your provider for a more complete list of available properties.
35
35
@@ -48,11 +48,11 @@ Represents a cube from a multidimensional schema, containing a set of related di
48
48
49
49
This section contains the following topic.
50
50
51
-
-[Properties, Methods, and Events](../../../ado/reference/ado-md-api/cubedef-object-properties-methods-and-events.md)
51
+
-[Properties, Methods, and Events](./cubedef-object-properties-methods-and-events.md)
52
52
53
53
## See Also
54
-
[CubeDef Example (VBScript)](../../../ado/reference/ado-md-api/cubedef-example-vbscript.md)
Copy file name to clipboardExpand all lines: docs/ado/reference/ado-md-api/description-property-ado-md.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,22 +29,22 @@ Returns a text explanation of the current object.
29
29
Returns a **String** and is read-only.
30
30
31
31
## Remarks
32
-
For [Member](../../../ado/reference/ado-md-api/member-object-ado-md.md) objects, **Description** applies only to measure and formula members. **Description** returns an empty string ("") for all other types of members. For more information about the various types of members, see the [Type](../../../ado/reference/ado-md-api/type-property-ado-md.md) property.
32
+
For [Member](./member-object-ado-md.md) objects, **Description** applies only to measure and formula members. **Description** returns an empty string ("") for all other types of members. For more information about the various types of members, see the [Type](./type-property-ado-md.md) property.
33
33
34
-
This property is only supported on **Member** objects that belong to a [Level](../../../ado/reference/ado-md-api/level-object-ado-md.md) object. An error occurs when this property is referenced from **Member** objects belonging to a [Position](../../../ado/reference/ado-md-api/position-object-ado-md.md) object.
34
+
This property is only supported on **Member** objects that belong to a [Level](./level-object-ado-md.md) object. An error occurs when this property is referenced from **Member** objects belonging to a [Position](./position-object-ado-md.md) object.
0 commit comments