| WikiPageGetPropertyGroup(Type) Method |
This is preliminary documentation and is subject to change.
Gets the property group of specified type that is attached to this page.
Namespace: WikiClientLibrary.PagesAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public IWikiPagePropertyGroup? GetPropertyGroup(
Type propertyGroupType
)
Public Function GetPropertyGroup (
propertyGroupType As Type
) As IWikiPagePropertyGroup
Dim instance As WikiPage
Dim propertyGroupType As Type
Dim returnValue As IWikiPagePropertyGroup
returnValue = instance.GetPropertyGroup(propertyGroupType)
public:
IWikiPagePropertyGroup^ GetPropertyGroup(
Type^ propertyGroupType
)
member GetPropertyGroup :
propertyGroupType : Type -> IWikiPagePropertyGroup
Parameters
- propertyGroupType Type
- Type of the desired property group. Must be a type implementing IWikiPagePropertyGroup.
Return Value
IWikiPagePropertyGroupThe property group instance of the specified type, or
null if no such item can be found.
See Also