Provides access to members that allow extra feature information to be persisted.
Members
Name | Description | |
---|---|---|
LoadClass | Looks at the class information and determines if it can load the features. | |
LoadFeature | Loads the feature information and updates the feature. | |
SaveClass | Writes out to the stream, class information used to aid loading. | |
SaveFeature | Writes out to the stream, feature infomation used to aid loading. |
IPersistCustomFeaturesExtension.LoadClass Method
Looks at the class information and determines if it can load the features.
Public Sub LoadClass ( _
ByVal stream As IStream, _
ByRef canLoad As Boolean _
)
public void LoadClass (
IStream stream,
ref bool canLoad
);
IPersistCustomFeaturesExtension.LoadFeature Method
Loads the feature information and updates the feature.
Public Sub LoadFeature ( _
ByVal stream As IStream, _
ByVal Feature As IFeature _
)
public void LoadFeature (
IStream stream,
IFeature Feature
);
IPersistCustomFeaturesExtension.SaveClass Method
Writes out to the stream, class information used to aid loading.
Public Sub SaveClass ( _
ByVal stream As IStream _
)
public void SaveClass (
IStream stream
);
IPersistCustomFeaturesExtension.SaveFeature Method
Writes out to the stream, feature infomation used to aid loading.
Public Sub SaveFeature ( _
ByVal stream As IStream, _
ByVal Feature As IFeature _
)
public void SaveFeature (
IStream stream,
IFeature Feature
);
Classes that implement IPersistCustomFeaturesExtension
Classes | Description |
---|