Bonsoir
J'imagine que c'est pour éviter des confusions de lecture en fonction de la police de caractères utilisée.
Il est toujours possible de forcer à la main de toute façon, perso j'ai fait une petite macro que je lance à la fin de mes plans (en multipage nous travaillons) qui renomme toutes les vues pour recommencer à "A" pour chaque page
Idem pour les vues de détails
Sub SectionViewRename()
Dim oDrawing As DrawingDocument
Dim oSheet As Sheet
Dim oView As DrawingView
Dim iSheetSectionCounter As Integer
If ThisApplication.ActiveDocument.DocumentType = kDrawingDocumentObject Then
Set oDrawing = ThisApplication.ActiveDocument
For Each oSheet In oDrawing.Sheets
If oSheet.DrawingViews.Count > 0 Then
iSheetSectionCounter = 0
For Each oView In oSheet.DrawingViews
If oView.ViewType = kSectionDrawingViewType Then
iSheetSectionCounter = iSheetSectionCounter + 1
oView.Name = Chr(64 + iSheetSectionCounter)
End If
Next
End If
Next
End If
End Sub
Sub DetailViewRename()
Dim oDrawing As DrawingDocument
Dim oSheet As Sheet
Dim oView As DrawingView
Dim iSheetDetailCounter As Integer
If ThisApplication.ActiveDocument.DocumentType = kDrawingDocumentObject Then
Set oDrawing = ThisApplication.ActiveDocument
For Each oSheet In oDrawing.Sheets
If oSheet.DrawingViews.Count > 0 Then
iSheetDetailCounter = 0
For Each oView In oSheet.DrawingViews
If oView.ViewType = kDetailDrawingViewType Then
iSheetDetailCounter = iSheetDetailCounter + 1
oView.Name = Chr(64 + iSheetDetailCounter)
End If
Next
End If
Next
End If
End Sub