You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
471 B
16 lines
471 B
package com.fr.design.mainframe.theme; |
|
|
|
import com.fr.workspace.WorkContext; |
|
import com.fr.workspace.server.theme.ThemedCellBorderFeature; |
|
|
|
/** |
|
* @author Starryi |
|
* @version 1.0 |
|
* Created by Starryi on 2021/11/26 |
|
*/ |
|
public class ThemedFeatureController { |
|
public static boolean isCellStyleSupportInnerBorder() { |
|
ThemedCellBorderFeature controller = WorkContext.getCurrent().get(ThemedCellBorderFeature.class); |
|
return controller.isSupport(); |
|
} |
|
}
|
|
|