API العام التغييرات في Aspose.Diagram 6.0.0
Contents
[
Hide
]
يصف هذا المستند التغييرات التي تم إجراؤها على Aspose.Diagram API من الإصدار 5.9.0 إلى 6.0.0 ، والتي قد تهم مطوري الوحدة / التطبيق. لا يشمل فقط الأساليب العامة الجديدة والمحدثة ، بل يشمل أيضًا وصفًا لأي تغييرات في السلوك خلف الكواليس في Aspose.Diagram.
تتم إضافة طريقة IsGlued في فئة الشكل
تأخذ طريقة IsGlued كائن شكل كمعامل لتحديد أن الشكلين تم لصقهما أم لا. رمز المثال:
C#
// Call the diagram constructor to load diagram
Diagram diagram = new Diagram("C:/temp/Drawing1.vsdx");
// get Visio page by name
Page page = diagram.Pages.GetPage("Page-1");
// get Visio shapes by ids
Shape ShapedOne = page.Shapes.GetShape(1);
Shape ShapedTwo = page.Shapes.GetShape(2);
// determine whether shapes are glued
bool glued = ShapedOne.IsGlued(ShapedTwo);
VB
' Call the diagram constructor to load diagram
Dim diagram As New Diagram("C:/temp/Drawing1.vsdx")
' get Visio page by name
Dim page As Page = diagram.Pages.GetPage("Page-1")
' get Visio shapes by ids
Dim ShapedOne As Shape = page.Shapes.GetShape(1)
Dim ShapedTwo As Shape = page.Shapes.GetShape(2)
' determine whether shapes are glued
Dim glued As Boolean = ShapedOne.IsGlued(ShapedTwo)
تمت إضافة أسلوب IsConnected في فئة Shape
تأخذ طريقة IsConnected شكل كائن كمعلمة لتحديد أن الشكلين متصلين أم لا. رمز المثال:
C#
// Call the diagram constructor to load diagram
Diagram diagram = new Diagram("C:/temp/Drawing1.vsdx");
// get Visio page by name
Page page = diagram.Pages.GetPage("Page-1");
// get Visio shapes by ids
Shape ShapedOne = page.Shapes.GetShape(1);
Shape ShapedTwo = page.Shapes.GetShape(2);
// determine whether shapes are glued
bool glued = ShapedOne.IsConnected(ShapedTwo);
VB
' Call the diagram constructor to load diagram
Dim diagram As New Diagram("C:/temp/Drawing1.vsdx")
' get Visio page by name
Dim page As Page = diagram.Pages.GetPage("Page-1")
' get Visio shapes by ids
Dim ShapedOne As Shape = page.Shapes.GetShape(1)
Dim ShapedTwo As Shape = page.Shapes.GetShape(2)
' determine whether shapes are glued
Dim glued As Boolean = ShapedOne.IsConnected(ShapedTwo)