  | 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.4+fbadc980737ddc9bb67116900ecad57f84a0b241
Syntaxpublic 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