 | MatrixDataProviderExtensionOverrideMatrixData Method |
Allows overriding matrix data (Revisions, CustomScopes) for files when the CT Core
is about to read and cache it. Enables custom data sourcing for Revisions and CustomScopes.
Namespace: CTExtensions.InterfacesAssembly: CTInterface (in CTInterface.dll) Version: 25.0
Syntaxpublic virtual bool OverrideMatrixData(
string bsFilename,
string bsConfiguration,
ctPropertyScope eScope,
string bsData,
ref string pbsOverriddenData
)
Public Overridable Function OverrideMatrixData (
bsFilename As String,
bsConfiguration As String,
eScope As ctPropertyScope,
bsData As String,
ByRef pbsOverriddenData As String
) As Boolean
Parameters
- bsFilename String
- File name
- bsConfiguration String
- Configuration Name, or empty for Document Properties
- eScope ctPropertyScope
- Scope of the matrix data. Should be ctPropertyScopeRevision, or one of ctPropertyScopeCustom1 to ctPropertyScopeCustom4.
- bsData String
- Original stored data
- pbsOverriddenData String
- Overridden data; must return true to use. Use MatrixDataProviderExtensionMatrixData to help with correct data formation.
Return Value
BooleanReturn true to use
pbsOverriddenData; false to ignore.
Revision HistoryDate | Version | Description |
---|
- | 2022 SP1 | First Release |
See Also